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.json71
1 files changed, 38 insertions, 33 deletions
diff --git a/src/client/tsconfig.json b/src/client/tsconfig.json
index aac0d1bfe7..e6a6b8eb2d 100644
--- a/src/client/tsconfig.json
+++ b/src/client/tsconfig.json
@@ -1,35 +1,40 @@
{
- "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": false,
- "experimentalDecorators": true,
- "resolveJsonModule": true,
- "typeRoots": [
- "node_modules/@types",
- "src/@types"
- ],
- "lib": [
- "esnext",
- "dom",
- "webworker"
- ]
- },
- "compileOnSave": false,
- "include": [
- "./**/*.ts"
- ]
+ "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": false,
+ "experimentalDecorators": true,
+ "resolveJsonModule": true,
+ "baseUrl": ".",
+ "paths": {
+ "@/*": ["./*"]
+ },
+ "typeRoots": [
+ "node_modules/@types",
+ "src/@types",
+ "src/client/@types"
+ ],
+ "lib": [
+ "esnext",
+ "dom",
+ "webworker"
+ ]
+ },
+ "compileOnSave": false,
+ "include": [
+ "./**/*.ts"
+ ]
}