mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The docker-based AIO preview deploy setup is replaced with significantly simpler setup using GitHub actions provided by dev-infra (also something dev-infra can maintain better then). The actions under the hood leverage Firebase preview channels. PR Close #48345
46 lines
1.2 KiB
JSON
46 lines
1.2 KiB
JSON
/* To learn more about this file see: https://angular.io/config/tsconfig. */
|
|
{
|
|
"compileOnSave": false,
|
|
"compilerOptions": {
|
|
"baseUrl": "src",
|
|
"outDir": "./out-tsc",
|
|
"forceConsistentCasingInFileNames": true,
|
|
"strict": true,
|
|
"noImplicitOverride": true,
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"sourceMap": true,
|
|
"declaration": false,
|
|
"downlevelIteration": true,
|
|
"experimentalDecorators": true,
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"target": "ES2022",
|
|
"module": "es2020",
|
|
"lib": [
|
|
"es2020",
|
|
"dom"
|
|
],
|
|
"skipLibCheck": true,
|
|
"strictPropertyInitialization": false,
|
|
"useDefineForClassFields": false
|
|
},
|
|
"exclude": [
|
|
"content",
|
|
"dist",
|
|
"node_modules",
|
|
"out-tsc",
|
|
"scripts",
|
|
"tools"
|
|
],
|
|
"angularCompilerOptions": {
|
|
"enableI18nLegacyMessageIdFormat": false,
|
|
"disableTypeScriptVersionCheck": true,
|
|
"strictInjectionParameters": true,
|
|
"strictInputAccessModifiers": true,
|
|
"strictTemplates": true
|
|
}
|
|
}
|