mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
Adds build rules for "artificially" generating `DocEntry` collections for block and element APIs. The two rules are very similar, but _just_ different enough that it's worth having two separate implementations. PR Close #52480
40 lines
837 B
JSON
40 lines
837 B
JSON
{
|
|
// This tsconfig is only used by IDEs, no actual builds.
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"declaration": true,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"module": "commonjs",
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"outDir": "../dist/tools/",
|
|
"noImplicitAny": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"paths": {
|
|
"@angular/*": ["../packages/*"]
|
|
},
|
|
"rootDirs": [".", ".."],
|
|
"sourceMap": true,
|
|
"inlineSources": true,
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"target": "es5",
|
|
"skipLibCheck": true,
|
|
"types": [
|
|
"node"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"testing",
|
|
"node_modules",
|
|
"typings-test",
|
|
"public_api_guard",
|
|
"docs"
|
|
],
|
|
"bazelOptions": {
|
|
"suppressTsconfigOverrideWarnings": true
|
|
}
|
|
}
|