|
1 | 1 | // TypeScript config that extends the demo-app tsconfig file. This config compiles the |
2 | | -// "main-aot.ts" file and also enables templage code generation / AOT. All paths need |
3 | | -// to be relative to the output directory. |
| 2 | +// "main-aot.ts" file and also enables templage code generation / AOT. |
4 | 3 | { |
5 | 4 | "extends": "./tsconfig-build", |
6 | 5 | "compilerOptions": { |
|
9 | 8 | "experimentalDecorators": true, |
10 | 9 | "noUnusedParameters": true, |
11 | 10 | "strictNullChecks": true, |
12 | | - "outDir": ".", |
| 11 | + "outDir": "../../dist/packages/demo-app", |
| 12 | + "rootDirs": [ |
| 13 | + ".", |
| 14 | + "../../dist/packages/demo-app" |
| 15 | + ], |
13 | 16 | "paths": { |
14 | | - "@angular/cdk/*": ["./cdk/*"], |
15 | | - "@angular/material": ["./material"], |
16 | | - "@angular/material/*": ["./material/*"], |
17 | | - "@angular/material-moment-adapter": ["./material-moment-adapter"] |
| 17 | + "@angular/material/*": ["../../dist/releases/material/*"], |
| 18 | + "@angular/material": ["../../dist/releases/material"], |
| 19 | + "@angular/cdk/*": ["../../dist/releases/cdk/*"], |
| 20 | + "@angular/cdk": ["../../dist/releases/cdk"], |
| 21 | + "@angular/material-experimental/*": ["../../dist/releases/material-experimental/*"], |
| 22 | + "@angular/material-experimental": ["../../dist/releases/material-experimental"], |
| 23 | + "@angular/material-moment-adapter": ["../../dist/releases/material-moment-adapter"] |
18 | 24 | } |
19 | 25 | }, |
20 | 26 | "files": [ |
|
0 commit comments