/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/tsconfig-legacy.json
40 строк
1 KB
Kristiyan Kostadinov
build: update to TypeScript 6 (#32899)
06 мар 2026, 23:29
Не верифицирован
06 мар 2026, 23:29
23be683
Код
Авторство
О чём код?
{ "extends": "./bazel-tsconfig-test.json", "compilerOptions": { "outDir": "../dist/legacy-test-out", "declaration": false, // For the legacy tests, we use ES2016 so that ZoneJS can work with async/await. "target": "es2016", "paths": { "@angular/*": ["./*"] }, "types": ["jasmine"], "emitDecoratorMetadata": true, "noUncheckedSideEffectImports": false, "experimentalDecorators": true }, "include": ["**/*.spec.ts", "dev-mode-types.d.ts", "../node_modules/zone.js/zone.d.ts"], "exclude": [ "**/*.e2e.spec.ts", "./cdk/schematics/**/*", "./material/schematics/**/*", "./components-examples/**/*", "./google-maps/schematics/**/*", "./youtube-player/schematics/**/*", "./material-moment-adapter/schematics/**/*", "./material-luxon-adapter/schematics/**/*", "./material-date-fns-adapter/schematics/**/*", "./material/core/theming/tests/**/*" ], "angularCompilerOptions": { // This is needed so that test components are not AOT compiled. Ngtsc will // not find an associated module for test components and error out. "compileNonExportedClasses": false, "typeCheckHostBindings": true, "strictTemplates": true, "strictInputAccessModifiers": true, "strictInputTypes": true, "strictOutputEventTypes": true, "strictDomEventTypes": true } }