UNPKG

732 BJSONView Raw
1{
2 "extends": "./tsconfig.json",
3 "compilerOptions": {
4 "outDir": "./aot",
5 "module": "es2015",
6 "stripInternal": true,
7 "skipLibCheck": true,
8 "baseUrl": "",
9 "types": [],
10 "noImplicitAny": true,
11 "suppressImplicitAnyIndexErrors": true
12 },
13 "files": [
14 "src/app/widget/widget.module.ts",
15 "src/main-aot.ts",
16 "index.ts"
17 ],
18 "paths": {
19 "@angular/core": ["node_modules/@angular/core"],
20 "@angular/common": ["node_modules/@angular/common"],
21 "@angular/router": ["node_modules/@angular/router"],
22 "@angular/forms": ["node_modules/@angular/forms"],
23 "rxjs/*": ["node_modules/rxjs/*"]
24 },
25 "angularCompilerOptions": {
26 "genDir": "./aot",
27 "strictMetadataEmit" : true
28 }
29}