mirror of
https://github.com/angular/angular.git
synced 2026-09-14 13:54:52 +08:00
9cf7b44f7c
Those options are enabled by default, they don't need to be explicit.
30 lines
792 B
JSON
30 lines
792 B
JSON
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"outDir": "./dist/out-tsc",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"moduleResolution": "bundler",
|
|
"preserveSymlinks": true,
|
|
"importHelpers": true,
|
|
"target": "ES2022",
|
|
"module": "ES2022",
|
|
"lib": ["ES2022", "dom"],
|
|
"types": ["node", "dom-navigation"],
|
|
"skipLibCheck": true,
|
|
"paths": {
|
|
"@angular/docs": ["./shared-docs"],
|
|
"@angular/*": ["../packages/*/index"]
|
|
}
|
|
},
|
|
"angularCompilerOptions": {
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true
|
|
}
|
|
}
|