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