/
githubmirror
/
zulip
Обзор
Документация
Войти
/
githubmirror
/
zulip
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
12.0-dev
tsconfig.json
48 строк
1 KB
Shubham Padia
starlight_help: Move help-beta over to starlight_help.
08 авг 2025, 21:59
08 авг 2025, 21:59
3e60b16
Код
Авторство
О чём код?
{ "compilerOptions": { /* Type Checking */ "exactOptionalPropertyTypes": true, "noFallthroughCasesInSwitch": true, "noImplicitOverride": true, "noImplicitReturns": true, "noUncheckedIndexedAccess": true, "noUnusedLocals": true, "noUnusedParameters": true, "strict": true, /* Modules */ "allowImportingTsExtensions": true, "module": "preserve", "moduleResolution": "bundler", "paths": { "*": ["./web/src/types/*"], }, "resolveJsonModule": true, "types": ["@types/jquery.validation"], /* Emit */ "noEmit": true, /* Interop Constraints */ "erasableSyntaxOnly": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "verbatimModuleSyntax": true, /* Language and Environment */ "target": "ESNext", /* Projects */ "composite": true, }, "exclude": [ // This is a separate package with its own TypeScript configuration. "starlight_help", // Skip walking large generated directories. ".venv", "docs/_build", "static/webpack-bundles", "var", ], }