angular-cn/tools/tsconfig.json
Alex Eagle 4f60968704 test(bazel): Build and test ts-api-guardian locally (#22544)
Also use it to test the public API for core and common

Once we have an ng_package for every package, we can remove
the npm dependency on ts-api-guardian and the gulp-based
public api check.

PR Close #22544
2018-03-02 15:00:00 -08:00

31 lines
614 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"declaration": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "commonjs",
"moduleResolution": "node",
"outDir": "../dist/tools/",
"noImplicitAny": true,
"noFallthroughCasesInSwitch": true,
"paths": {},
"rootDir": ".",
"sourceMap": true,
"inlineSources": true,
"lib": [
"es6",
"dom"
],
"target": "es5",
"skipLibCheck": true
},
"exclude": [
"testing",
"node_modules",
"ts-api-guardian",
"typings-test",
"public_api_guard",
"docs"
]
}