2016-04-28 20:50:03 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
|
|
|
"declaration": true,
|
|
|
|
"experimentalDecorators": true,
|
2016-08-16 16:53:04 -04:00
|
|
|
"emitDecoratorMetadata": true,
|
2016-04-28 20:50:03 -04:00
|
|
|
"module": "commonjs",
|
|
|
|
"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,
|
2017-02-20 18:06:23 -05:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2016-04-28 20:50:03 -04:00
|
|
|
"paths": {
|
2016-05-25 18:37:40 -04:00
|
|
|
"selenium-webdriver": ["../node_modules/@types/selenium-webdriver/index.d.ts"],
|
2016-04-28 20:50:03 -04:00
|
|
|
"rxjs/*": ["../node_modules/rxjs/*"],
|
2017-03-02 15:12:46 -05:00
|
|
|
"@angular/*": ["./*"],
|
|
|
|
"e2e_util/*": ["../modules/e2e_util/*"]
|
2016-04-28 20:50:03 -04:00
|
|
|
},
|
|
|
|
"rootDir": ".",
|
|
|
|
"inlineSourceMap": true,
|
2018-03-06 17:53:01 -05:00
|
|
|
"lib": ["es5", "dom", "es2015.promise", "es2015.collection", "es2015.iterable", "es2015.core"],
|
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",
|
|
|
|
"elements/schematics",
|
|
|
|
"examples/**/e2e_test/*",
|
|
|
|
"platform-server/integrationtest"
|
2016-04-28 20:50:03 -04:00
|
|
|
]
|
2017-09-20 12:54:47 -04:00
|
|
|
|
2016-04-28 20:50:03 -04:00
|
|
|
}
|