24 lines
639 B
JSON
24 lines
639 B
JSON
{
|
|
"extends": "../tsconfig-build.json",
|
|
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"emitDecoratorMetadata": true,
|
|
"baseUrl": ".",
|
|
"rootDir": ".",
|
|
"paths": {
|
|
"@angular/*": ["../../dist/packages-dist/*"],
|
|
"rxjs/*": ["../../node_modules/rxjs/*"]
|
|
},
|
|
"outDir": "../../dist/examples",
|
|
"types": ["jasmine", "node", "angularjs", "systemjs"]
|
|
},
|
|
|
|
"include": [
|
|
"./**/*.ts",
|
|
"../../node_modules/zone.js/dist/zone.js.d.ts",
|
|
// TODO(i): we can't use protractor's built-in typings because they contain lots of ambient definitions
|
|
"../../node_modules/@types/protractor/index.d.ts"
|
|
]
|
|
}
|