/
githubmirror
/
angular
Обзор
Документация
Войти
/
githubmirror
/
angular
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
adev/shared-docs/pipeline/examples/template/tsconfig.json
35 строк
1 KB
Matthieu Riegler
docs(docs-infra): remove deprecated ts flags
18 июн 2026, 16:29
18 июн 2026, 16:29
c23ddd6
Код
Авторство
О чём код?
/* To learn more about this file see: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */ { "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, "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 } }