Last change
on this file since e29cc2e was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago |
initial commit
|
-
Property mode
set to
100644
|
File size:
1.2 KB
|
Rev | Line | |
---|
[6a3a178] | 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 | "noImplicitOverride": true,
|
---|
| 10 | "noImplicitAny": true,
|
---|
| 11 | "noFallthroughCasesInSwitch": true,
|
---|
| 12 | "noImplicitThis": true,
|
---|
| 13 | "noImplicitReturns": true,
|
---|
| 14 | "skipDefaultLibCheck": true,
|
---|
| 15 | "noUnusedLocals": false,
|
---|
| 16 | "noUnusedParameters": false,
|
---|
| 17 | "strictFunctionTypes": true,
|
---|
| 18 | "skipLibCheck": true,
|
---|
| 19 | "sourceMap": true,
|
---|
| 20 | "declaration": true,
|
---|
| 21 | "target": "es6",
|
---|
| 22 | "types": [
|
---|
| 23 | "jasmine",
|
---|
| 24 | "node"
|
---|
| 25 | ],
|
---|
| 26 | "baseUrl": ".",
|
---|
| 27 | "paths": {
|
---|
| 28 | "@angular/cdk/schematics": ["../../cdk/schematics"]
|
---|
| 29 | }
|
---|
| 30 | },
|
---|
| 31 | "exclude": [
|
---|
| 32 | "**/*.spec.ts",
|
---|
| 33 | // Exclude the test-setup utility files. Those should not be part of the output.
|
---|
| 34 | "test-setup/**/*.ts",
|
---|
| 35 | // Exclude template files that will be copied by the schematics. Those are not valid TS.
|
---|
| 36 | "ng-generate/*/files/**/*.ts",
|
---|
| 37 | // Exclude all test-case files because those should not be included in the schematics output.
|
---|
| 38 | "ng-update/test-cases/**/*.ts"
|
---|
| 39 | ],
|
---|
| 40 | "bazelOptions": {
|
---|
| 41 | "suppressTsconfigOverrideWarnings": true
|
---|
| 42 | }
|
---|
| 43 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.