Upload tsconfig.json
Browse files- tsconfig.json +18 -0
tsconfig.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"target": "ES2022",
|
| 4 |
+
"module": "ESNext",
|
| 5 |
+
"moduleResolution": "Bundler",
|
| 6 |
+
"strict": true,
|
| 7 |
+
"lib": [
|
| 8 |
+
"ES2022",
|
| 9 |
+
"DOM"
|
| 10 |
+
],
|
| 11 |
+
"noEmit": true,
|
| 12 |
+
"skipLibCheck": true,
|
| 13 |
+
"allowImportingTsExtensions": true
|
| 14 |
+
},
|
| 15 |
+
"include": [
|
| 16 |
+
"src"
|
| 17 |
+
]
|
| 18 |
+
}
|