UNPKG

1.27 kBJSONView Raw
1{
2 "compilerOptions": {
3 "lib": ["es2017"],
4 "module": "commonjs",
5 "moduleResolution": "node",
6 "outDir": "../../../dist/packages/material/schematics",
7 "noEmitOnError": false,
8 "strictNullChecks": true,
9 "useUnknownInCatchVariables": true,
10 "noImplicitOverride": true,
11 "noImplicitAny": true,
12 "noFallthroughCasesInSwitch": true,
13 "noImplicitThis": true,
14 "noImplicitReturns": true,
15 "skipDefaultLibCheck": true,
16 "noUnusedLocals": false,
17 "noUnusedParameters": false,
18 "strictFunctionTypes": true,
19 "skipLibCheck": true,
20 "sourceMap": true,
21 "declaration": true,
22 "target": "es6",
23 "types": ["jasmine", "node"],
24 "baseUrl": ".",
25 "paths": {
26 "@angular/cdk/schematics": ["../../cdk/schematics"]
27 }
28 },
29 "exclude": [
30 "**/*.spec.ts",
31 // Exclude the test-setup utility files. Those should not be part of the output.
32 "test-setup/**/*.ts",
33 // Exclude template files that will be copied by the schematics. Those are not valid TS.
34 "ng-generate/*/files/**/*.ts",
35 // Exclude all test-case files because those should not be included in the schematics output.
36 "ng-update/test-cases/**/*.ts"
37 ],
38 "bazelOptions": {
39 "suppressTsconfigOverrideWarnings": true
40 }
41}