aboutsummaryrefslogtreecommitdiff
path: root/src-ui/tsconfig.json
diff options
context:
space:
mode:
authorGeckoEidechse <gecko.eidechse+git@pm.me>2022-10-05 01:48:14 +0200
committerGeckoEidechse <gecko.eidechse+git@pm.me>2022-10-05 01:48:14 +0200
commit6ea68f0b8413cd29d2ad8750e7174b3cd1824065 (patch)
treea79796fb57443808da1bbb32c90b39930b05e0ae /src-ui/tsconfig.json
parent936764d6b7e9ea3ce69cc59918c440fb775ad64e (diff)
downloadFlightCore-6ea68f0b8413cd29d2ad8750e7174b3cd1824065.tar.gz
FlightCore-6ea68f0b8413cd29d2ad8750e7174b3cd1824065.zip
chore: Remove unused code
Diffstat (limited to 'src-ui/tsconfig.json')
-rw-r--r--src-ui/tsconfig.json45
1 files changed, 0 insertions, 45 deletions
diff --git a/src-ui/tsconfig.json b/src-ui/tsconfig.json
deleted file mode 100644
index 290a24d2..00000000
--- a/src-ui/tsconfig.json
+++ /dev/null
@@ -1,45 +0,0 @@
-{
- "compilerOptions": {
- // For modern runtimes & rollup
- "target": "ES2022",
- "module": "ES2022",
-
- // For interop
- "moduleResolution": "node",
- "esModuleInterop": true,
-
- // Full ts mode
- "allowJs": false,
- "checkJs": false,
- "strict": true,
-
- // Fev info
- "declaration": true,
- "sourceMap": true,
-
- // Use native class fields
- "useDefineForClassFields": true,
-
- // Allows TS Decorators
- "experimentalDecorators": true,
-
- // Disallow inconsistently-cased references to the same file.
- "forceConsistentCasingInFileNames": true,
-
- // Paths info
- "outDir": ".out/", // for checkin tsc output only. Rollup is used for runtime
- "baseUrl": ".",
-
- // Speedup compile
- "skipLibCheck": true
- },
-
- // We want more control about which code we will compile and exclude
- "include": [
- "./src/**/*.ts"
- ],
-
- "exclude": [
- "node_modules"
- ]
-} \ No newline at end of file