/
githubmirror
/
zulip
Обзор
Документация
Войти
/
githubmirror
/
zulip
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
10.0-dev
tsconfig.json
48 строк
1 KB
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", "paths": { "*": ["./web/src/types/*"], }, "resolveJsonModule": true, "types": ["@types/jquery.validation"], /* Emit */ "noEmit": true, /* Interop Constraints */ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "isolatedModules": true, /* Language and Environment */ "target": "ESNext", /* Projects */ "composite": true, }, "exclude": [ // Type stubs are not part of the top-level project. "web/src/types", // Skip walking large generated directories. "docs/_build", "static/webpack-bundles", "var", "zulip-py3-venv", // Even though allowJs defaults to false, typescript-eslint forces it to true. "**/*.js", ], }