/
TestEntry
/
mt-app
Обзор
Документация
Войти
/
TestEntry
/
mt-app
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
tsconfig.json
43 строки
1 KB
PontiyPirat
chore: remove project references from tsconfig.json to fix TSServer composite mode error
25 июн 2026, 21:23
25 июн 2026, 21:23
5bec9b7
Код
Авторство
О чём код?
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */ /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */ { "compileOnSave": false, "compilerOptions": { "strict": true, "noImplicitOverride": true, "noPropertyAccessFromIndexSignature": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "skipLibCheck": true, "isolatedModules": true, "experimentalDecorators": true, "importHelpers": true, "target": "ES2022", "module": "preserve", "paths": { "@ui-kit": ["./projects/ui-kit/src/public-api"], "@common-lib": [ "./projects/common-lib/src/public-api" ], "common-lib": [ "./dist/common-lib" ], "@mt-core": [ "./projects/mt-core/src/public-api" ], "mt-core": [ "./dist/mt-core" ], "ui-kit": [ "./dist/ui-kit" ] } }, "angularCompilerOptions": { "enableI18nLegacyMessageIdFormat": false, "strictInjectionParameters": true, "strictInputAccessModifiers": true, "typeCheckHostBindings": true, "strictTemplates": true }, }