Spaces:
Sleeping
Sleeping
Create tsconfig.json
Browse files- tsconfig.json +14 -0
tsconfig.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"target": "ES2020",
|
| 4 |
+
"module": "ES2020",
|
| 5 |
+
"moduleResolution": "bundler",
|
| 6 |
+
"outDir": "dist",
|
| 7 |
+
"rootDir": "src",
|
| 8 |
+
"strict": true,
|
| 9 |
+
"esModuleInterop": true,
|
| 10 |
+
"forceConsistentCasingInFileNames": true,
|
| 11 |
+
"skipLibCheck": true
|
| 12 |
+
},
|
| 13 |
+
"include": ["src/**/*.ts"]
|
| 14 |
+
}
|