|
| 1 | +// TypeScript config file that is used to compile the dev-app. Target environment will be ES5, |
| 2 | +// since the dev-app will be served in the browser. |
| 3 | +{ |
| 4 | + "compilerOptions": { |
| 5 | + // Needed for Moment.js since it doesn't have a default export. |
| 6 | + "allowSyntheticDefaultImports": true, |
| 7 | + "declaration": false, |
| 8 | + "emitDecoratorMetadata": true, |
| 9 | + "experimentalDecorators": true, |
| 10 | + "noUnusedParameters": false, |
| 11 | + "noUnusedLocals": false, |
| 12 | + "strictNullChecks": true, |
| 13 | + "noImplicitReturns": true, |
| 14 | + "strictFunctionTypes": true, |
| 15 | + "noImplicitThis": true, |
| 16 | + "lib": ["es6", "es2015", "dom"], |
| 17 | + "skipLibCheck": true, |
| 18 | + "module": "commonjs", |
| 19 | + "moduleResolution": "node", |
| 20 | + "noEmitOnError": true, |
| 21 | + "noImplicitAny": true, |
| 22 | + "outDir": "../../dist/packages/dev-app", |
| 23 | + "sourceMap": true, |
| 24 | + "target": "es5", |
| 25 | + "stripInternal": false, |
| 26 | + "typeRoots": [ |
| 27 | + "../../node_modules/@types/!(node)" |
| 28 | + ], |
| 29 | + "baseUrl": ".", |
| 30 | + "paths": { |
| 31 | + "@angular/material/*": ["../../dist/packages/material/*"], |
| 32 | + "@angular/cdk/*": ["../../dist/packages/cdk/*"], |
| 33 | + "@angular/cdk": ["../../dist/packages/cdk"], |
| 34 | + "@angular/material-experimental/*": ["../../dist/packages/material-experimental/*"], |
| 35 | + "@angular/material-experimental": ["../../dist/packages/material-experimental"], |
| 36 | + "@angular/cdk-experimental/*": ["../../dist/packages/cdk-experimental/*"], |
| 37 | + "@angular/cdk-experimental": ["../../dist/packages/cdk-experimental"], |
| 38 | + "@angular/material-moment-adapter": ["../../dist/packages/material-moment-adapter"], |
| 39 | + "@angular/google-maps/*": ["../../dist/packages/google-maps/*"], |
| 40 | + "@angular/material-examples": ["../../dist/packages/material-examples"] |
| 41 | + } |
| 42 | + }, |
| 43 | + "include": [ |
| 44 | + "./typings.d.ts", |
| 45 | + "./system-rxjs-operators.ts", |
| 46 | + "./system-config.ts", |
| 47 | + "./main.ts", |
| 48 | + "**/*-module.ts" |
| 49 | + ] |
| 50 | +} |
0 commit comments