angular-cn/packages/zone.js/tsconfig.json
Paul Gschwendtner 60f58bf051 refactor: ensure zone.js can be built with typescript strict flag (#30993)
As part of FW-1265, the `zone.js` package is made compatible
with the TypeScript `--strict` flag. Read more about the strict flag [here](https://www.typescriptlang.org/docs/handbook/compiler-options.html)

PR Close #30993
2019-07-18 14:21:26 -07:00

38 lines
741 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"outDir": "build",
"inlineSourceMap": true,
"inlineSources": true,
"declaration": false,
"noEmitOnError": false,
"stripInternal": false,
"strict": true,
"lib": [
"es5",
"dom",
"es2015.iterable",
"es2015.promise",
"es2015.symbol",
"es2015.symbol.wellknown"
]
},
"exclude": [
"node_modules",
"bazel-out",
"build",
"build-esm",
"build-esm-2015",
"dist",
"lib/closure",
"lib/node/**",
"lib/mix/**",
"test/node/**",
"test/node_bluebird_entry_point.ts",
"test/node_entry_point.ts",
"test/node_error_entry_point.ts",
"test/node_tests.ts"
]
}