Update tsconfig.json
Browse files- tsconfig.json +23 -24
tsconfig.json
CHANGED
|
@@ -1,28 +1,27 @@
|
|
| 1 |
{
|
| 2 |
"compilerOptions": {
|
| 3 |
-
"target": "ES2022",
|
| 4 |
-
"experimentalDecorators": true,
|
| 5 |
-
"useDefineForClassFields": false,
|
| 6 |
-
"module": "ESNext",
|
| 7 |
-
"lib": [
|
| 8 |
-
"ES2022",
|
| 9 |
-
"DOM",
|
| 10 |
-
"DOM.Iterable"
|
| 11 |
-
],
|
| 12 |
-
"skipLibCheck": true,
|
| 13 |
-
"types": [
|
| 14 |
-
"node"
|
| 15 |
-
],
|
| 16 |
-
"moduleResolution": "bundler",
|
| 17 |
-
"isolatedModules": true,
|
| 18 |
-
"moduleDetection": "force",
|
| 19 |
-
"allowJs": true,
|
| 20 |
-
"jsx": "react-jsx",
|
| 21 |
-
"paths": {
|
| 22 |
-
"@/": ["
|
| 23 |
-
|
| 24 |
-
|
| 25 |
-
"
|
| 26 |
-
"noEmit": true
|
| 27 |
}
|
| 28 |
}
|
|
|
|
| 1 |
{
|
| 2 |
"compilerOptions": {
|
| 3 |
+
"target": "ES2022",
|
| 4 |
+
"experimentalDecorators": true,
|
| 5 |
+
"useDefineForClassFields": false,
|
| 6 |
+
"module": "ESNext",
|
| 7 |
+
"lib": [
|
| 8 |
+
"ES2022",
|
| 9 |
+
"DOM",
|
| 10 |
+
"DOM.Iterable"
|
| 11 |
+
],
|
| 12 |
+
"skipLibCheck": true,
|
| 13 |
+
"types": [
|
| 14 |
+
"node"
|
| 15 |
+
],
|
| 16 |
+
"moduleResolution": "bundler",
|
| 17 |
+
"isolatedModules": true,
|
| 18 |
+
"moduleDetection": "force",
|
| 19 |
+
"allowJs": true,
|
| 20 |
+
"jsx": "react-jsx",
|
| 21 |
+
"paths": {
|
| 22 |
+
"@/*": ["./*"]
|
| 23 |
+
},
|
| 24 |
+
"allowImportingTsExtensions": true,
|
| 25 |
+
"noEmit": true
|
|
|
|
| 26 |
}
|
| 27 |
}
|