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