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