angular/tools/compiler_cli/test/tsconfig.json

32 lines
986 B
JSON

{
"angularCompilerOptions": {
// For TypeScript 1.8, we have to lay out generated files
// in the same source directory with your code.
"genDir": ".",
"legacyPackageLayout": false
},
"compilerOptions": {
"target": "es6",
"experimentalDecorators": true,
"noImplicitAny": false,
"moduleResolution": "node",
"outDir": "../../../dist/tools/compiler_cli/test/built",
"rootDir": "src",
"declaration": true,
/**
* These options are only needed because the test depends
* on locally-built sources, not NPM distributions.
*/
"baseUrl": "../../..",
"paths": {
"@angular/*": ["dist/all/@angular/*"],
"@angular/core": ["dist/all/@angular/core/"],
"@angular/compiler": ["dist/all/@angular/compiler/"],
"rxjs/*": ["node_modules/rxjs/*"],
"ts-metadata-collector": ["dist/tools/metadata"]
}
}
}