2017-03-07 19:04:30 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"outDir": "../dist/all/",
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"selenium-webdriver": ["../node_modules/@types/selenium-webdriver/index.d.ts"],
|
|
|
|
|
"rxjs/*": ["../node_modules/rxjs/*"],
|
2024-09-30 22:56:20 +00:00
|
|
|
"@angular/*": ["../dist/packages-dist/@angular/*"]
|
2017-03-07 19:04:30 +00:00
|
|
|
},
|
|
|
|
|
"rootDir": ".",
|
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
|
"lib": ["es5", "dom", "es2015.promise", "es2015.collection", "es2015.iterable"],
|
|
|
|
|
"skipDefaultLibCheck": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"target": "es5",
|
2025-03-20 10:37:23 +00:00
|
|
|
"types": ["angular"]
|
2017-03-07 19:04:30 +00:00
|
|
|
},
|
|
|
|
|
"exclude": [
|
2019-02-06 17:03:58 +00:00
|
|
|
"payload_tests",
|
|
|
|
|
"playground/",
|
2019-02-11 20:04:06 +00:00
|
|
|
"benchmarks/"
|
2017-09-20 16:54:47 +00:00
|
|
|
],
|
|
|
|
|
"angularCompilerOptions": {
|
2025-03-20 10:37:23 +00:00
|
|
|
"strictTemplates": true,
|
2025-09-09 07:36:54 +00:00
|
|
|
"skipTemplateCodegen": true
|
2017-09-20 16:54:47 +00:00
|
|
|
}
|
2017-03-07 19:04:30 +00:00
|
|
|
}
|