summaryrefslogtreecommitdiff
path: root/front/tsconfig.json
diff options
context:
space:
mode:
authorphyscik <mynameisgennadiy@vk.com>2026-04-10 20:45:57 +0500
committerphyscik <mynameisgennadiy@vk.com>2026-04-10 20:45:57 +0500
commite243f101b3266ed98a1b668562a639408ffe36d7 (patch)
tree9476be3e45f39c1a07655607002a41a914daf7e3 /front/tsconfig.json
parentfd5b5fedfec1921930257b1003245f3740536556 (diff)
router setup
Diffstat (limited to 'front/tsconfig.json')
-rw-r--r--front/tsconfig.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/front/tsconfig.json b/front/tsconfig.json
new file mode 100644
index 0000000..a273b0c
--- /dev/null
+++ b/front/tsconfig.json
@@ -0,0 +1,26 @@
+{
+ "compilerOptions": {
+ "target": "es5",
+ "lib": [
+ "dom",
+ "dom.iterable",
+ "esnext"
+ ],
+ "allowJs": true,
+ "skipLibCheck": true,
+ "esModuleInterop": true,
+ "allowSyntheticDefaultImports": true,
+ "strict": true,
+ "forceConsistentCasingInFileNames": true,
+ "noFallthroughCasesInSwitch": true,
+ "module": "esnext",
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "react-jsx"
+ },
+ "include": [
+ "src"
+ ]
+}