Create tsconfig.json
Browse files- frontend/tsconfig.json +13 -0
frontend/tsconfig.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"compilerOptions": {
|
| 3 |
+
"target": "ES2022",
|
| 4 |
+
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
| 5 |
+
"jsx": "react-jsx",
|
| 6 |
+
"module": "ESNext",
|
| 7 |
+
"moduleResolution": "Bundler",
|
| 8 |
+
"strict": true,
|
| 9 |
+
"baseUrl": ".",
|
| 10 |
+
"paths": { "@/*": ["src/*"] }
|
| 11 |
+
},
|
| 12 |
+
"include": ["src"]
|
| 13 |
+
}
|