2016-09-07 19:04:33 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
2016-09-08 19:48:07 -04:00
|
|
|
"declaration": true,
|
2016-09-07 19:04:33 -04:00
|
|
|
"stripInternal": true,
|
|
|
|
"experimentalDecorators": true,
|
2016-09-08 19:48:07 -04:00
|
|
|
"noImplicitAny": true,
|
2016-09-07 19:04:33 -04:00
|
|
|
"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,
|
2016-09-13 18:58:45 -04:00
|
|
|
"types": ["jasmine", "node"]
|
2016-09-07 19:04:33 -04:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"./_common/*.ts",
|
|
|
|
"./**/module.ts",
|
|
|
|
"./**/test/*.ts",
|
|
|
|
"./**/e2e_test/*.ts",
|
|
|
|
"../../../node_modules/zone.js/dist/zone.js.d.ts",
|
2016-09-13 18:58:45 -04:00
|
|
|
"../../system.d.ts",
|
|
|
|
// TODO(i): we can't use protractor's built-in typings because they contain lots of ambient definitions
|
2016-09-14 10:40:58 -04:00
|
|
|
"../../../node_modules/@types/protractor/index.d.ts"
|
2016-09-07 19:04:33 -04:00
|
|
|
]
|
|
|
|
}
|