@futdevpro/nts-dynamo 1.3.57 → 1.3.58
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/tsconfig.tsbuildinfo +9 -1
- package/package.json +1 -1
- package/tsconfig.json +3 -1
package/lib/tsconfig.tsbuildinfo
CHANGED
|
@@ -26,6 +26,11 @@
|
|
|
26
26
|
"signature": "5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06",
|
|
27
27
|
"affectsGlobalScope": false
|
|
28
28
|
},
|
|
29
|
+
"../node_modules/typescript/lib/lib.dom.d.ts": {
|
|
30
|
+
"version": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
|
|
31
|
+
"signature": "9affb0a2ddc57df5b8174c0af96c288d697a262e5bc9ca1f544c999dc64a91e6",
|
|
32
|
+
"affectsGlobalScope": true
|
|
33
|
+
},
|
|
29
34
|
"../node_modules/typescript/lib/lib.es2015.core.d.ts": {
|
|
30
35
|
"version": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
|
|
31
36
|
"signature": "63e0cc12d0f77394094bd19e84464f9840af0071e5b9358ced30511efef1d8d2",
|
|
@@ -742,7 +747,9 @@
|
|
|
742
747
|
"target": 2,
|
|
743
748
|
"module": 1,
|
|
744
749
|
"lib": [
|
|
745
|
-
"lib.es2015.d.ts"
|
|
750
|
+
"lib.es2015.d.ts",
|
|
751
|
+
"lib.es2018.d.ts",
|
|
752
|
+
"lib.dom.d.ts"
|
|
746
753
|
],
|
|
747
754
|
"allowJs": true,
|
|
748
755
|
"declaration": true,
|
|
@@ -2021,6 +2028,7 @@
|
|
|
2021
2028
|
"../node_modules/axios/index.d.ts",
|
|
2022
2029
|
"../node_modules/mongoose/index.d.ts",
|
|
2023
2030
|
"../node_modules/tslib/tslib.d.ts",
|
|
2031
|
+
"../node_modules/typescript/lib/lib.dom.d.ts",
|
|
2024
2032
|
"../node_modules/typescript/lib/lib.es2015.collection.d.ts",
|
|
2025
2033
|
"../node_modules/typescript/lib/lib.es2015.core.d.ts",
|
|
2026
2034
|
"../node_modules/typescript/lib/lib.es2015.d.ts",
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -4,7 +4,9 @@
|
|
|
4
4
|
"incremental": true, /* Enable incremental compilation */
|
|
5
5
|
"target": "es6", /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', or 'ESNEXT'. */
|
|
6
6
|
"module": "commonjs", /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', or 'ESNext'. */
|
|
7
|
-
"lib": ["es6"
|
|
7
|
+
"lib": ["es6",
|
|
8
|
+
"es2018",
|
|
9
|
+
"dom"], /* Specify library files to be included in the compilation. */
|
|
8
10
|
"allowJs": true, /* Allow javascript files to be compiled. */
|
|
9
11
|
// "checkJs": true, /* Report errors in .js files. */
|
|
10
12
|
// "jsx": "preserve", /* Specify JSX code generation: 'preserve', 'react-native', or 'react'. */
|