2016-04-29 00:50:03 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2019-06-14 07:29:04 +00: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-29 00:50:03 +00:00
|
|
|
"declaration": true,
|
2019-09-12 05:08:20 +00:00
|
|
|
"downlevelIteration": true,
|
2016-04-29 00:50:03 +00:00
|
|
|
"experimentalDecorators": true,
|
2016-08-16 20:53:04 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
2021-09-27 22:42:55 +00:00
|
|
|
"module": "es2020",
|
2021-12-16 13:11:53 +00:00
|
|
|
"target": "es2020",
|
2019-06-14 10:19:09 +00:00
|
|
|
"strict": true,
|
2016-04-29 00:50:03 +00:00
|
|
|
"moduleResolution": "node",
|
2021-09-25 12:58:32 +00:00
|
|
|
"esModuleInterop": true,
|
2017-04-14 21:40:56 +00:00
|
|
|
"strictNullChecks": true,
|
2018-06-18 23:38:33 +00:00
|
|
|
"strictPropertyInitialization": true,
|
2017-03-07 19:04:30 +00:00
|
|
|
"outDir": "../dist/all/@angular",
|
2016-06-08 22:45:15 +00:00
|
|
|
"noImplicitAny": true,
|
2021-06-07 15:09:00 +00:00
|
|
|
"noImplicitOverride": true,
|
2017-02-20 23:06:23 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2016-04-29 00:50:03 +00:00
|
|
|
"paths": {
|
2021-11-04 17:28:32 +00:00
|
|
|
"selenium-webdriver": [
|
|
|
|
|
"./node_modules/@types/selenium-webdriver/index.d.ts"
|
|
|
|
|
],
|
|
|
|
|
"rxjs/*": [
|
|
|
|
|
"./node_modules/rxjs/*"
|
|
|
|
|
],
|
|
|
|
|
"@angular/*": [
|
|
|
|
|
"./packages/*"
|
|
|
|
|
],
|
|
|
|
|
"zone.js/*": [
|
|
|
|
|
"./packages/zone.js/*"
|
|
|
|
|
],
|
|
|
|
|
"angular-in-memory-web-api": [
|
|
|
|
|
"./packages/misc/angular-in-memory-web-api/index.ts"
|
|
|
|
|
]
|
2016-04-29 00:50:03 +00:00
|
|
|
},
|
|
|
|
|
"rootDir": ".",
|
|
|
|
|
"inlineSourceMap": true,
|
2021-11-04 17:28:32 +00:00
|
|
|
"lib": [
|
|
|
|
|
"es2020",
|
|
|
|
|
"dom"
|
|
|
|
|
],
|
2016-06-24 22:37:46 +00:00
|
|
|
"skipDefaultLibCheck": true,
|
2016-08-31 01:07:40 +00:00
|
|
|
"skipLibCheck": true,
|
2021-11-04 17:28:32 +00:00
|
|
|
"types": [
|
|
|
|
|
"angular"
|
|
|
|
|
]
|
2016-04-29 00:50:03 +00:00
|
|
|
},
|
2018-02-13 16:19:33 +00:00
|
|
|
"bazelOptions": {
|
|
|
|
|
"suppressTsconfigOverrideWarnings": true
|
|
|
|
|
},
|
2016-04-29 00:50:03 +00:00
|
|
|
"exclude": [
|
2017-08-16 16:02:20 +00:00
|
|
|
"bazel",
|
2018-04-03 21:52:33 +00:00
|
|
|
"common/locales",
|
2017-10-24 11:54:08 +00:00
|
|
|
"compiler-cli/integrationtest",
|
2021-04-30 16:40:09 +00:00
|
|
|
"compiler-cli/test/compliance",
|
2019-03-05 23:15:59 +00:00
|
|
|
"core/schematics",
|
2017-10-24 11:54:08 +00:00
|
|
|
"elements/schematics",
|
2019-06-14 07:29:04 +00: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/**",
|
2021-11-04 17:28:32 +00:00
|
|
|
"language-service/ivy/test/legacy/project",
|
2018-07-27 14:47:12 +00:00
|
|
|
"platform-server/integrationtest",
|
2019-10-06 03:06:53 +00:00
|
|
|
"router/test/aot_ngsummary_test"
|
2016-04-29 00:50:03 +00:00
|
|
|
]
|
2022-01-07 18:00:40 +00:00
|
|
|
}
|