aboutsummaryrefslogtreecommitdiff
path: root/src-vue/tsconfig.json
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2024-12-23 00:23:09 +0100
committerGeckoEidechse <gecko.eidechse+git@pm.me>2024-12-23 00:23:09 +0100
commita1da748f9d635a02d5f4248becb9d609ef6cf7ab (patch)
tree4ab13819a3ae570af269b6b63f5f07186419c970 /src-vue/tsconfig.json
parentf1dee718da95836ffa5c0985c9e8f5643e0f3f6f (diff)
downloadFlightCore-a1da748f9d635a02d5f4248becb9d609ef6cf7ab.tar.gz
FlightCore-a1da748f9d635a02d5f4248becb9d609ef6cf7ab.zip
refactor: Restructure UI logic folder structure to match main branch
Diffstat (limited to 'src-vue/tsconfig.json')
-rw-r--r--src-vue/tsconfig.json25
1 files changed, 25 insertions, 0 deletions
diff --git a/src-vue/tsconfig.json b/src-vue/tsconfig.json
new file mode 100644
index 00000000..f82888f3
--- /dev/null
+++ b/src-vue/tsconfig.json
@@ -0,0 +1,25 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+ "jsx": "preserve",
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true
+ },
+ "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
+ "references": [{ "path": "./tsconfig.node.json" }]
+}