/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
docs/src/assets/stackblitz/tsconfig.json
36 строк
1 KB
Kristiyan Kostadinov
build: update to TypeScript 6 (#32899)
06 мар 2026, 23:29
Не верифицирован
06 мар 2026, 23:29
23be683
Код
Авторство
О чём код?
/* To learn more about this file see: https://angular.io/config/tsconfig. */ { "compileOnSave": false, "compilerOptions": { "outDir": "./dist/out-tsc", "sourceMap": true, "declaration": false, "experimentalDecorators": true, "moduleResolution": "bundler", "importHelpers": true, "target": "es2022", "module": "es2020", "lib": ["es2020", "dom"], // Strictness flags. Matching the settings applied in the Angular Components source // code, ensuring that examples do not break in StackBlitz with stricter settings. "noUnusedParameters": false, "noUnusedLocals": false, "useDefineForClassFields": false, "strictNullChecks": true, "strictPropertyInitialization": true, "noImplicitReturns": true, "strictFunctionTypes": true, "noImplicitOverride": true, "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitThis": true, "strictBindCallApply": true, "esModuleInterop": true }, "angularCompilerOptions": { "enableI18nLegacyMessageIdFormat": false, "strictInjectionParameters": true, "strictInputAccessModifiers": true, "strictTemplates": true } }