Spaces:
Running
Running
Create tsconfig.json
Browse files- tsconfig.json +9 -13
tsconfig.json
CHANGED
|
@@ -1,17 +1,13 @@
|
|
| 1 |
{
|
| 2 |
"compilerOptions": {
|
| 3 |
-
|
| 4 |
-
|
| 5 |
-
"
|
| 6 |
-
"
|
| 7 |
-
"
|
| 8 |
-
"declaration": true,
|
| 9 |
-
"
|
| 10 |
-
"esModuleInterop": true
|
| 11 |
-
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
|
| 12 |
-
"strict": true, /* Enable all strict type-checking options. */
|
| 13 |
-
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
| 14 |
},
|
| 15 |
-
"include": ["src
|
| 16 |
-
"exclude": ["src/wasm/*"]
|
| 17 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"compilerOptions": {
|
| 3 |
+
"target": "ES2020",
|
| 4 |
+
"module": "ES2020",
|
| 5 |
+
"moduleResolution": "node",
|
| 6 |
+
"outDir": "dist",
|
| 7 |
+
"rootDir": "src",
|
| 8 |
+
"declaration": true,
|
| 9 |
+
"strict": true,
|
| 10 |
+
"esModuleInterop": true
|
|
|
|
|
|
|
|
|
|
| 11 |
},
|
| 12 |
+
"include": ["src"]
|
|
|
|
| 13 |
}
|