/
githubmirror
/
components
Обзор
Документация
Войти
/
githubmirror
/
components
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/bazel-tsconfig-build.json
66 строк
2 KB
Kristiyan Kostadinov
build: remove deprecated compiler option (#32692)
02 фев 2026, 08:11
Не верифицирован
02 фев 2026, 08:11
bfd792f
Код
Авторство
О чём код?
// TypeScript configuration that will be used to build entry-points of the CDK. To avoid // duplicate logic, we decided to just have one package-wide tsconfig file that will be // used by Bazel to build the sources for an entry-point. { "compilerOptions": { "declaration": true, "stripInternal": false, "experimentalDecorators": true, "emitDecoratorMetadata": true, "noUnusedParameters": false, "noUnusedLocals": false, "strictNullChecks": true, "strictPropertyInitialization": true, "noPropertyAccessFromIndexSignature": true, "noImplicitReturns": true, "strictFunctionTypes": true, "noImplicitOverride": true, "useUnknownInCatchVariables": true, "noFallthroughCasesInSwitch": true, "noImplicitAny": true, "noImplicitThis": true, "importHelpers": true, "strictBindCallApply": true, "esModuleInterop": true, "newLine": "lf", // Bazel either uses "umd" or "esnext". We replicate this here for IDE support. // https://github.com/bazelbuild/rules_typescript/blob/master/internal/common/tsconfig.bzl#L199 "module": "esnext", "moduleResolution": "bundler", "sourceMap": true, "inlineSources": true, "target": "es2022", "lib": ["es2020", "dom"], "types": [], "skipLibCheck": true, "paths": { "@angular/aria/*": ["./aria/*"], "@angular/cdk-experimental/*": ["./cdk-experimental/*"], "@angular/cdk/*": ["./cdk/*"], "@angular/components-examples": ["./components-examples"], "@angular/components-examples/*": ["./components-examples/*"], "@angular/google-maps": ["./google-maps"], "@angular/google-maps/*": ["./google-maps/*"], "@angular/material-date-fns-adapter": ["./material-date-fns-adapter"], "@angular/material-experimental/*": ["./material-experimental/*"], "@angular/material-luxon-adapter": ["./material-luxon-adapter"], "@angular/material-moment-adapter": ["./material-moment-adapter"], "@angular/material/*": ["./material/*"], "@angular/youtube-player": ["./youtube-player"] } }, "angularCompilerOptions": { "strictTemplates": true, "typeCheckHostBindings": true, "strictInputAccessModifiers": true, "strictInputTypes": true, "strictOutputEventTypes": true, "strictDomEventTypes": true, "extendedDiagnostics": { "defaultCategory": "error" } }, "bazelOptions": { "suppressTsconfigOverrideWarnings": true } }