2016-04-28 17:50:03 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"declaration": true,
|
|
|
|
"experimentalDecorators": true,
|
2016-08-16 13:53:04 -07:00
|
|
|
"emitDecoratorMetadata": true,
|
2016-04-28 17:50:03 -07:00
|
|
|
"module": "commonjs",
|
|
|
|
"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": {
|
2016-05-25 15:37:40 -07:00
|
|
|
"selenium-webdriver": ["../node_modules/@types/selenium-webdriver/index.d.ts"],
|
2016-04-28 17:50:03 -07:00
|
|
|
"rxjs/*": ["../node_modules/rxjs/*"],
|
2017-03-02 12:12:46 -08:00
|
|
|
"@angular/*": ["./*"],
|
|
|
|
"e2e_util/*": ["../modules/e2e_util/*"]
|
2016-04-28 17:50:03 -07:00
|
|
|
},
|
|
|
|
"rootDir": ".",
|
|
|
|
"inlineSourceMap": true,
|
2018-03-06 14:53:01 -08:00
|
|
|
"lib": ["es5", "dom", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.core"],
|
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-01-28 21:59:25 +01:00
|
|
|
// Do not build the example e2e spec files since those require custom typings and
|
|
|
|
// aren't required to build all packages.
|
2017-10-24 14:54:08 +03:00
|
|
|
"examples/**/e2e_test/*",
|
2019-01-28 21:59:25 +01:00
|
|
|
// Exclude the "main.ts" files for each example group because this file is used by
|
|
|
|
// Bazel to launch the devserver and uses AOT compilation.
|
|
|
|
"examples/*/main.ts",
|
2018-07-27 15:47:12 +01:00
|
|
|
"platform-server/integrationtest",
|
|
|
|
"router/test/aot_ngsummary_test",
|
2016-04-28 17:50:03 -07:00
|
|
|
]
|
|
|
|
}
|