30 lines
723 B
JSON
30 lines
723 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"baseUrl": ".",
|
||
|
"stripInternal": true,
|
||
|
"experimentalDecorators": true,
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"outDir": "../../../dist/examples",
|
||
|
"paths": {
|
||
|
"@angular/*": ["../../../dist/packages-dist/*"],
|
||
|
"rxjs/*": ["../../../node_modules/rxjs/*"]
|
||
|
},
|
||
|
"rootDir": ".",
|
||
|
"sourceMap": true,
|
||
|
"inlineSources": true,
|
||
|
"target": "es5",
|
||
|
"lib": ["es2015", "dom"],
|
||
|
"skipLibCheck": true,
|
||
|
"types": ["jasmine", "protractor", "node"]
|
||
|
},
|
||
|
"include": [
|
||
|
"./_common/*.ts",
|
||
|
"./**/module.ts",
|
||
|
"./**/test/*.ts",
|
||
|
"./**/e2e_test/*.ts",
|
||
|
"../../../node_modules/zone.js/dist/zone.js.d.ts",
|
||
|
"../../system.d.ts"
|
||
|
]
|
||
|
}
|