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,
|
2022-12-11 10:58:56 +00:00
|
|
|
"module": "esnext",
|
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,
|
2023-09-11 11:21:09 +00:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": 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": {
|
2022-10-27 13:05:44 +00:00
|
|
|
"selenium-webdriver": ["./node_modules/@types/selenium-webdriver/index.d.ts"],
|
|
|
|
|
"rxjs/*": ["./node_modules/rxjs/*"],
|
|
|
|
|
"@angular/*": ["./packages/*"],
|
|
|
|
|
"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,
|
2025-03-28 16:34:45 +00:00
|
|
|
"lib": ["es2022", "dom", "dom.iterable"],
|
2016-06-24 22:37:46 +00:00
|
|
|
"skipDefaultLibCheck": true,
|
2016-08-31 01:07:40 +00:00
|
|
|
"skipLibCheck": true,
|
2023-12-19 20:42:54 +00:00
|
|
|
"types": ["angular"]
|
2016-04-29 00:50:03 +00:00
|
|
|
},
|
2018-02-13 16:19:33 +00:00
|
|
|
"bazelOptions": {
|
|
|
|
|
"suppressTsconfigOverrideWarnings": true
|
|
|
|
|
},
|
2025-03-20 10:37:23 +00:00
|
|
|
"angularCompilerOptions": {
|
2025-09-09 07:36:54 +00:00
|
|
|
"strictTemplates": true
|
2025-03-20 10:37:23 +00:00
|
|
|
},
|
2016-04-29 00:50:03 +00:00
|
|
|
"exclude": [
|
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",
|
2024-07-31 15:32:50 +00:00
|
|
|
"platform-server/integrationtest"
|
2016-04-29 00:50:03 +00:00
|
|
|
]
|
2022-10-27 13:05:44 +00:00
|
|
|
}
|