summaryrefslogtreecommitdiff
path: root/src/client/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/tsconfig.json')
-rw-r--r--src/client/tsconfig.json42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/client/tsconfig.json b/src/client/tsconfig.json
deleted file mode 100644
index 7a26047ddf..0000000000
--- a/src/client/tsconfig.json
+++ /dev/null
@@ -1,42 +0,0 @@
-{
- "compilerOptions": {
- "allowJs": true,
- "noEmitOnError": false,
- "noImplicitAny": false,
- "noImplicitReturns": true,
- "noUnusedParameters": false,
- "noUnusedLocals": true,
- "noFallthroughCasesInSwitch": true,
- "declaration": false,
- "sourceMap": false,
- "target": "es2017",
- "module": "esnext",
- "moduleResolution": "node",
- "removeComments": false,
- "noLib": false,
- "strict": true,
- "strictNullChecks": true,
- "experimentalDecorators": true,
- "resolveJsonModule": true,
- "baseUrl": ".",
- "paths": {
- "@/*": ["../*"],
- "@client/*": ["./*"],
- "@lib/*": ["../../lib/*"],
- },
- "typeRoots": [
- "node_modules/@types",
- "src/@types",
- "src/client/@types"
- ],
- "lib": [
- "esnext",
- "dom",
- "webworker"
- ]
- },
- "compileOnSave": false,
- "include": [
- "./**/*.ts"
- ]
-}