2016-04-28 17:50:03 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-06-14 09:29:04 +02:00
|
|
|
// Setting the "baseUrl" to a different directory than "packages/" because otherwise
|
|
|
|
// packages like the native "http" module are resolved to the Angular "http" package.
|
|
|
|
"baseUrl": "..",
|
2016-04-28 17:50:03 -07:00
|
|
|
"declaration": true,
|
2019-09-11 22:08:20 -07:00
|
|
|
"downlevelIteration": true,
|
2016-04-28 17:50:03 -07:00
|
|
|
"experimentalDecorators": true,
|
2016-08-16 13:53:04 -07:00
|
|
|
"emitDecoratorMetadata": true,
|
2016-04-28 17:50:03 -07:00
|
|
|
"module": "commonjs",
|
2019-06-14 12:19:09 +02:00
|
|
|
"strict": true,
|
2016-04-28 17:50:03 -07:00
|
|
|
"moduleResolution": "node",
|
2017-04-14 14:40:56 -07:00
|
|
|
"strictNullChecks": true,
|
2018-06-18 16:38:33 -07:00
|
|
|
"strictPropertyInitialization": true,
|
2017-03-07 11:04:30 -08:00
|
|
|
"outDir": "../dist/all/@angular",
|
2016-06-08 15:45:15 -07:00
|
|
|
"noImplicitAny": true,
|
2017-02-20 15:06:23 -08:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2016-04-28 17:50:03 -07:00
|
|
|
"paths": {
|
2019-06-14 09:29:04 +02:00
|
|
|
"selenium-webdriver": ["./node_modules/@types/selenium-webdriver/index.d.ts"],
|
|
|
|
"rxjs/*": ["./node_modules/rxjs/*"],
|
|
|
|
"@angular/*": ["./packages/*"],
|
2019-10-06 12:06:53 +09:00
|
|
|
"zone.js/*": ["./packages/zone.js/*"],
|
2019-06-14 09:29:04 +02:00
|
|
|
"e2e_util/*": ["./modules/e2e_util/*"]
|
2016-04-28 17:50:03 -07:00
|
|
|
},
|
|
|
|
"rootDir": ".",
|
|
|
|
"inlineSourceMap": true,
|
2019-05-16 08:53:19 +01:00
|
|
|
"lib": ["es5", "dom", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.core", "es2017.object"],
|
2016-06-24 15:37:46 -07:00
|
|
|
"skipDefaultLibCheck": true,
|
2016-08-30 18:07:40 -07:00
|
|
|
"skipLibCheck": true,
|
2016-11-16 13:35:31 -08:00
|
|
|
"target": "es5",
|
2018-06-20 13:29:37 +03:00
|
|
|
"types": ["angular"]
|
2016-04-28 17:50:03 -07:00
|
|
|
},
|
2018-02-13 08:19:33 -08:00
|
|
|
"bazelOptions": {
|
|
|
|
"suppressTsconfigOverrideWarnings": true
|
|
|
|
},
|
2016-04-28 17:50:03 -07:00
|
|
|
"exclude": [
|
2017-08-16 09:02:20 -07:00
|
|
|
"bazel",
|
2018-04-03 14:52:33 -07:00
|
|
|
"common/locales",
|
2017-10-24 14:54:08 +03:00
|
|
|
"compiler-cli/integrationtest",
|
2019-03-06 00:15:59 +01:00
|
|
|
"core/schematics",
|
2017-10-24 14:54:08 +03:00
|
|
|
"elements/schematics",
|
2019-06-14 09:29:04 +02:00
|
|
|
// Do not build the example package because there are no legacy tests that need to be
|
|
|
|
// built. Additionally the examples are not made compatible with the "strict" option.
|
|
|
|
"examples/**",
|
|
|
|
// Http doesn't need to built since it is no longer maintained and
|
|
|
|
// will be removed eventually. See: FW-1392.
|
|
|
|
"http/**",
|
2019-09-12 15:20:54 -07:00
|
|
|
"language-service/test/project",
|
2019-11-22 16:31:40 -08:00
|
|
|
// requires "types": ["node"] which we don't want to be available for other code
|
|
|
|
"localize/src/tools",
|
2018-07-27 15:47:12 +01:00
|
|
|
"platform-server/integrationtest",
|
2019-06-14 09:29:04 +02:00
|
|
|
// The webworker packages have deprecated and are not made compatible with the
|
|
|
|
// strict flag. Until these packages are removed, we exclude them here.
|
|
|
|
"platform-webworker/**",
|
|
|
|
"platform-webworker-dynamic/**",
|
2019-10-06 12:06:53 +09:00
|
|
|
"router/test/aot_ngsummary_test"
|
2016-04-28 17:50:03 -07:00
|
|
|
]
|
|
|
|
}
|