Spaces:
Build error
Build error
Update tsconfig.json
Browse files- tsconfig.json +10 -12
tsconfig.json
CHANGED
|
@@ -1,19 +1,17 @@
|
|
| 1 |
{
|
| 2 |
"compilerOptions": {
|
| 3 |
-
"target": "
|
| 4 |
"module": "commonjs",
|
| 5 |
-
"lib": ["
|
|
|
|
|
|
|
| 6 |
"strict": true,
|
|
|
|
|
|
|
| 7 |
"esModuleInterop": true,
|
| 8 |
"skipLibCheck": true,
|
| 9 |
-
"
|
| 10 |
-
"outDir": "./dist",
|
| 11 |
-
"rootDir": "./src"
|
| 12 |
},
|
| 13 |
-
"include": [
|
| 14 |
-
|
| 15 |
-
|
| 16 |
-
"exclude": [
|
| 17 |
-
"node_modules"
|
| 18 |
-
]
|
| 19 |
-
}
|
|
|
|
| 1 |
{
|
| 2 |
"compilerOptions": {
|
| 3 |
+
"target": "ES2020",
|
| 4 |
"module": "commonjs",
|
| 5 |
+
"lib": ["ES2020"],
|
| 6 |
+
"outDir": "./lib",
|
| 7 |
+
"rootDir": "./src",
|
| 8 |
"strict": true,
|
| 9 |
+
"experimentalDecorators": true,
|
| 10 |
+
"emitDecoratorMetadata": true,
|
| 11 |
"esModuleInterop": true,
|
| 12 |
"skipLibCheck": true,
|
| 13 |
+
"forceConsistentCasingInFileNames": true
|
|
|
|
|
|
|
| 14 |
},
|
| 15 |
+
"include": ["src/**/*"],
|
| 16 |
+
"exclude": ["node_modules", "lib"]
|
| 17 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|