2016-04-29 00:50:03 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"experimentalDecorators": true,
|
2016-08-16 20:53:04 +00:00
|
|
|
"emitDecoratorMetadata": true,
|
2016-04-29 00:50:03 +00:00
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
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,
|
2017-02-20 23:06:23 +00:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2016-04-29 00:50:03 +00:00
|
|
|
"paths": {
|
2016-05-25 22:37:40 +00:00
|
|
|
"selenium-webdriver": ["../node_modules/@types/selenium-webdriver/index.d.ts"],
|
2016-04-29 00:50:03 +00:00
|
|
|
"rxjs/*": ["../node_modules/rxjs/*"],
|
2017-03-02 20:12:46 +00:00
|
|
|
"@angular/*": ["./*"],
|
|
|
|
|
"e2e_util/*": ["../modules/e2e_util/*"]
|
2016-04-29 00:50:03 +00:00
|
|
|
},
|
|
|
|
|
"rootDir": ".",
|
|
|
|
|
"inlineSourceMap": true,
|
2018-03-06 22:53:01 +00:00
|
|
|
"lib": ["es5", "dom", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.core"],
|
2016-06-24 22:37:46 +00:00
|
|
|
"skipDefaultLibCheck": true,
|
2016-08-31 01:07:40 +00:00
|
|
|
"skipLibCheck": true,
|
2016-11-16 21:35:31 +00:00
|
|
|
"target": "es5",
|
2018-06-20 10:29:37 +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",
|
|
|
|
|
"elements/schematics",
|
|
|
|
|
"examples/**/e2e_test/*",
|
2018-07-27 14:47:12 +00:00
|
|
|
"platform-server/integrationtest",
|
|
|
|
|
"router/test/aot_ngsummary_test",
|
2016-04-29 00:50:03 +00:00
|
|
|
]
|
|
|
|
|
}
|