angular-cn/aio/tsconfig.json

35 lines
812 B
JSON

{
"compileOnSave": false,
"compilerOptions": {
"strict": true,
"noImplicitAny": false,
// disabled because this is on by default in tsc 2.7 breaking our codebase - we need to refactor
"strictPropertyInitialization": false,
// disabled because of https://github.com/angular/angular/issues/22877
"skipLibCheck": true,
"outDir": "./dist/out-tsc",
"baseUrl": "src",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noUnusedLocals": true,
"target": "es5",
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2016",
"dom"
]
},
"exclude": [
"content",
"tools",
"aio-builds-setup",
"node_modules",
"scripts"
]
}