|
1 | 1 | {
|
2 |
| - "compilerOptions": { |
3 |
| - "module": "commonjs", |
4 |
| - "target": "es2018", |
5 |
| - "outDir": "build", |
6 |
| - "lib": ["es2018", "dom"], |
7 |
| - "sourceMap": true, |
8 |
| - "rootDir": "src", |
9 |
| - "baseUrl": "src", |
10 |
| - "strict": true /* enable all strict type-checking options */, |
11 |
| - /* Additional Checks */ |
12 |
| - "forceConsistentCasingInFileNames": true, |
13 |
| - "noImplicitReturns": true, |
14 |
| - "noImplicitThis": true, |
15 |
| - "noImplicitAny": true, |
16 |
| - "strictNullChecks": true, |
17 |
| - "suppressImplicitAnyIndexErrors": true, |
18 |
| - "noUnusedLocals": false, |
19 |
| - "experimentalDecorators": true, |
20 |
| - "emitDecoratorMetadata": true, |
21 |
| - "paths": { |
22 |
| - "typings": ["../typings/index.d.ts"], |
23 |
| - "typings/graphql": ["../typings/graphql.d.ts"], |
24 |
| - "@api": ["services/api/index"], |
25 |
| - "@gql/*": ["services/api/gql/*"] |
26 |
| - }, |
27 |
| - "allowJs": true |
28 |
| - }, |
29 |
| - "exclude": ["node_modules", ".vscode-test", "build", "resources", "web-app", "*.js", "*.test.ts"] |
| 2 | + "compilerOptions": { |
| 3 | + "module": "commonjs", |
| 4 | + "target": "es2018", |
| 5 | + "outDir": "build", |
| 6 | + "lib": ["es2018", "dom"], |
| 7 | + "sourceMap": true, |
| 8 | + "rootDir": "src", |
| 9 | + "baseUrl": "src", |
| 10 | + "strict": true /* enable all strict type-checking options */, |
| 11 | + /* Additional Checks */ |
| 12 | + "forceConsistentCasingInFileNames": true, |
| 13 | + "noImplicitReturns": true, |
| 14 | + "noImplicitThis": true, |
| 15 | + "noImplicitAny": true, |
| 16 | + "strictNullChecks": true, |
| 17 | + "suppressImplicitAnyIndexErrors": true, |
| 18 | + "noUnusedLocals": false, |
| 19 | + "experimentalDecorators": true, |
| 20 | + "emitDecoratorMetadata": true, |
| 21 | + "paths": { |
| 22 | + "typings": ["../typings/index.d.ts"], |
| 23 | + "typings/graphql": ["../typings/graphql.d.ts"] |
| 24 | + }, |
| 25 | + "allowJs": true, |
| 26 | + "removeComments": true |
| 27 | + }, |
| 28 | + "exclude": ["node_modules", ".vscode-test", "build", "resources", "web-app", "*.js", "*.test.ts"] |
30 | 29 | }
|
0 commit comments