aboutsummaryrefslogtreecommitdiff
path: root/src-vue/tsconfig.json
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2024-12-23 14:33:42 +0100
committerGeckoEidechse <gecko.eidechse+git@pm.me>2024-12-23 14:33:42 +0100
commite43e9feae2840e8735c9d8a7c40bb2ce5c740e5f (patch)
tree12c9570154768db869d91ba07f2093c95fd24d0c /src-vue/tsconfig.json
parent395d64f7c7a0e36dd4ed62235cb3f5e1d35e52d9 (diff)
downloadFlightCore-e43e9feae2840e8735c9d8a7c40bb2ce5c740e5f.tar.gz
FlightCore-e43e9feae2840e8735c9d8a7c40bb2ce5c740e5f.zip
refactor: Adjust tsconfig file to match structure of main branch more closely
Diffstat (limited to 'src-vue/tsconfig.json')
-rw-r--r--src-vue/tsconfig.json12
1 files changed, 4 insertions, 8 deletions
diff --git a/src-vue/tsconfig.json b/src-vue/tsconfig.json
index f82888f3..e149a27f 100644
--- a/src-vue/tsconfig.json
+++ b/src-vue/tsconfig.json
@@ -3,22 +3,18 @@
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
- "lib": ["ES2020", "DOM", "DOM.Iterable"],
- "skipLibCheck": true,
-
- /* Bundler mode */
"moduleResolution": "bundler",
+ "strict": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
-
- /* Linting */
- "strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
- "noFallthroughCasesInSwitch": true
+ "noFallthroughCasesInSwitch": true,
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "skipLibCheck": true
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]