mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
b757b1387c
The dev-infra build tooling is now decoupled from `ng-dev`. This will make it easier to update `ng-dev` without necessarily needing to upgrade the whole build system, Bazel etc. This is useful when e.g. new release tool features have been added and should also be ported to active LTS branches. PR Close #46976
36 lines
1.0 KiB
JSON
36 lines
1.0 KiB
JSON
{
|
|
"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/*"],
|
|
"@angular/*": ["../../packages/*"],
|
|
"zone.js/*": ["../../packages/zone.js/*"]
|
|
},
|
|
"rootDir": ".",
|
|
"inlineSourceMap": true,
|
|
"lib": ["es5", "DOM", "ScriptHost"],
|
|
"skipDefaultLibCheck": true,
|
|
"skipLibCheck": true,
|
|
"target": "es5",
|
|
"types": ["angular", "jasmine"]
|
|
},
|
|
"angularCompilerOptions": {
|
|
"skipTemplateCodegen": true
|
|
},
|
|
"rules": {
|
|
"no-floating-promises": true,
|
|
"no-unused-expression": true,
|
|
"no-unused-variable": true
|
|
},
|
|
"include": ["../../node_modules/@angular/build-tooling/bazel/benchmark/driver-utilities/"]
|
|
}
|