angular/modules/benchmarks/tsconfig.json
Paul Gschwendtner 7be3620a13 build: fix IDE completion for benchmarks code (#51887)
We are including a file, for some reason, that is outside of the root
dir. This breaks TypeScript/ or more specifically VSCode from picking
up this tsconfig- breaking path mappings and hence auto completion.

PR Close #51887
2023-10-04 08:14:35 -07:00

34 lines
943 B
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
}
}