@eggjs/tsconfig 1.3.1 → 1.3.3
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/package.json +1 -1
- package/tsconfig.json +2 -3
package/package.json
CHANGED
package/tsconfig.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"compileOnSave": true,
|
|
3
3
|
"compilerOptions": {
|
|
4
|
-
"target": "
|
|
4
|
+
"target": "ES2020",
|
|
5
5
|
"module": "commonjs",
|
|
6
6
|
"strict": true,
|
|
7
7
|
// Warn on expressions and declarations with an implied 'any' type.
|
|
@@ -11,7 +11,6 @@
|
|
|
11
11
|
// and enable '--allowSyntheticDefaultImports' for typesystem compatibility.
|
|
12
12
|
// Convenient for import assert from 'assert'
|
|
13
13
|
"esModuleInterop": true,
|
|
14
|
-
"charset": "utf8",
|
|
15
14
|
// Allow javascript files to be compiled.
|
|
16
15
|
// Egg compile to in place, will throw can not overwrite js file
|
|
17
16
|
"allowJs": false,
|
|
@@ -34,6 +33,6 @@
|
|
|
34
33
|
"experimentalDecorators": true,
|
|
35
34
|
"emitDecoratorMetadata": true,
|
|
36
35
|
"useUnknownInCatchVariables": true,
|
|
37
|
-
"incremental":
|
|
36
|
+
"incremental": false
|
|
38
37
|
}
|
|
39
38
|
}
|