Spaces:
Sleeping
Sleeping
Update tsconfig.json
Browse files- tsconfig.json +7 -14
tsconfig.json
CHANGED
|
@@ -1,20 +1,13 @@
|
|
| 1 |
{
|
| 2 |
"compilerOptions": {
|
| 3 |
"target": "ES2020",
|
| 4 |
-
"useDefineForClassFields": true,
|
| 5 |
-
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
| 6 |
"module": "ESNext",
|
| 7 |
-
"
|
| 8 |
-
"
|
| 9 |
-
"
|
| 10 |
-
"
|
| 11 |
-
"isolatedModules": true,
|
| 12 |
-
"noEmit": true,
|
| 13 |
-
"jsx": "react-jsx",
|
| 14 |
"strict": true,
|
| 15 |
-
"
|
| 16 |
-
"noUnusedParameters": false,
|
| 17 |
-
"noFallthroughCasesInSwitch": true
|
| 18 |
},
|
| 19 |
-
"include": ["
|
| 20 |
-
}
|
|
|
|
| 1 |
{
|
| 2 |
"compilerOptions": {
|
| 3 |
"target": "ES2020",
|
|
|
|
|
|
|
| 4 |
"module": "ESNext",
|
| 5 |
+
"moduleResolution": "Node",
|
| 6 |
+
"outDir": "dist",
|
| 7 |
+
"rootDir": ".",
|
| 8 |
+
"esModuleInterop": true,
|
|
|
|
|
|
|
|
|
|
| 9 |
"strict": true,
|
| 10 |
+
"skipLibCheck": true
|
|
|
|
|
|
|
| 11 |
},
|
| 12 |
+
"include": ["server"]
|
| 13 |
+
}
|