/
githubmirror
/
zulip
Обзор
Документация
Войти
/
githubmirror
/
zulip
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
12.0-dev
web/shared/tsconfig.json
37 строк
896 B
Anders Kaseorg
tsconfig: Enable composite.
09 июн 2024, 22:08
09 июн 2024, 22:08
1a8d841
Код
Авторство
О чём код?
{ "compilerOptions": { /* Type Checking */ "exactOptionalPropertyTypes": true, "noFallthroughCasesInSwitch": true, "noImplicitOverride": true, "noImplicitReturns": true, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "strict": true, /* Modules */ "moduleResolution": "node", "rootDir": "src", /* Emit */ "declaration": true, "outDir": "lib", "sourceMap": true, /* JavaScript Support */ "allowJs": true, /* Interop Constraints */ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "isolatedModules": true, /* Language and Environment */ "target": "esnext", /* Projects */ "composite": true, }, "include": ["src"], }