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-03-24 12:57:32 -04:00
|
|
|
"strictNullChecks": false,
|
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/*": ["./*"],
|
2016-11-22 12:10:23 -05:00
|
|
|
"@angular/tsc-wrapped": ["../dist/tools/@angular/tsc-wrapped"],
|
2017-03-02 15:12:46 -05:00
|
|
|
"@angular/tsc-wrapped/*": ["../dist/tools/@angular/tsc-wrapped/*"],
|
|
|
|
"e2e_util/*": ["../modules/e2e_util/*"]
|
2016-04-28 20:50:03 -04:00
|
|
|
},
|
|
|
|
"rootDir": ".",
|
|
|
|
"inlineSourceMap": true,
|
2016-06-24 18:37:46 -04:00
|
|
|
"lib": ["es5", "dom", "es2015.promise", "es2015.collection", "es2015.iterable"],
|
|
|
|
"skipDefaultLibCheck": true,
|
2016-08-30 21:07:40 -04:00
|
|
|
"skipLibCheck": true,
|
2016-11-16 16:35:31 -05:00
|
|
|
"target": "es5",
|
|
|
|
"types": ["angularjs"]
|
2016-04-28 20:50:03 -04:00
|
|
|
},
|
|
|
|
"exclude": [
|
2017-03-14 20:11:39 -04:00
|
|
|
"compiler-cli/integrationtest",
|
|
|
|
"platform-server/integrationtest"
|
2016-04-28 20:50:03 -04:00
|
|
|
]
|
|
|
|
}
|