aboutsummaryrefslogtreecommitdiffstats
path: root/tsconfig.settings.json
diff options
context:
space:
mode:
authorLibravatar Markus Hatvan <markus_hatvan@aon.at>2021-09-14 10:34:04 +0200
committerLibravatar GitHub <noreply@github.com>2021-09-14 10:34:04 +0200
commit979ec02c9a1019152be08705986337e470eabb57 (patch)
tree6021179ad8649112717a499780f475275af487f2 /tsconfig.settings.json
parentrefactor: defensive programming to avoid javascript error for unread badges (diff)
downloadferdium-app-979ec02c9a1019152be08705986337e470eabb57.tar.gz
ferdium-app-979ec02c9a1019152be08705986337e470eabb57.tar.zst
ferdium-app-979ec02c9a1019152be08705986337e470eabb57.zip
chore: codebase improvements (#1930)
Diffstat (limited to 'tsconfig.settings.json')
-rw-r--r--tsconfig.settings.json28
1 files changed, 0 insertions, 28 deletions
diff --git a/tsconfig.settings.json b/tsconfig.settings.json
deleted file mode 100644
index bd4669e01..000000000
--- a/tsconfig.settings.json
+++ /dev/null
@@ -1,28 +0,0 @@
1{
2 "extends": "@tsconfig/node14/tsconfig.json",
3 "compilerOptions": {
4 "baseUrl": ".",
5 "target": "esnext",
6 "lib": ["es2015", "es2017", "dom"],
7 "jsx": "react",
8 "typeRoots": ["node_modules/@types"],
9 "moduleResolution": "node",
10 "types": ["node"],
11 "sourceMap": true,
12 "noImplicitAny": false, // TODO: Need to switch
13 "allowSyntheticDefaultImports": true,
14 "experimentalDecorators": true,
15 "composite": true,
16 "esModuleInterop": true,
17 "importHelpers": true,
18 "removeComments": true,
19 "allowUnreachableCode": false,
20 "allowUnusedLabels": false,
21 "noUnusedLocals": true,
22 "noUnusedParameters": true,
23 "noImplicitReturns": true,
24 "noImplicitThis": true,
25 "preserveConstEnums": true,
26 "strictNullChecks": true,
27 }
28}