diff options
Diffstat (limited to 'src/tsconfig.json')
| -rw-r--r-- | src/tsconfig.json | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/src/tsconfig.json b/src/tsconfig.json deleted file mode 100644 index 4a03a17432..0000000000 --- a/src/tsconfig.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "compilerOptions": { - "allowJs": true, - "noEmitOnError": false, - "noImplicitAny": true, - "noImplicitReturns": true, - "noUnusedParameters": false, - "noUnusedLocals": false, - "noFallthroughCasesInSwitch": true, - "declaration": false, - "sourceMap": true, - "target": "es2017", - "module": "commonjs", - "moduleResolution": "node", - "allowSyntheticDefaultImports": true, - "removeComments": false, - "noLib": false, - "strict": true, - "strictNullChecks": true, - "strictPropertyInitialization": false, - "experimentalDecorators": true, - "emitDecoratorMetadata": true, - "resolveJsonModule": true, - "isolatedModules": true, - "rootDir": "./", - "baseUrl": "./", - "paths": { - "@/*": ["./*"] - }, - "outDir": "../built", - "typeRoots": [ - "../node_modules/@types", - "./@types" - ], - "lib": [ - "esnext" - ] - }, - "compileOnSave": false, - "include": [ - "./**/*.ts" - ], - "exclude": [ - "./client/**/*.ts" - ] -} |