/
outbreak
/
kilocode
Обзор
Документация
Войти
/
outbreak
/
kilocode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
cli/tsconfig.json
35 строк
911 B
Catriel Müller
refactor: fix typechecks
13 ноя 2025, 16:17
13 ноя 2025, 16:17
e7f181a
Код
Авторство
О чём код?
{ "compilerOptions": { "target": "ES2022", "module": "ESNext", "moduleResolution": "bundler", "allowSyntheticDefaultImports": true, "esModuleInterop": true, "allowJs": true, "declaration": true, "outDir": "./dist", "strict": true, "noUnusedLocals": false, "noUnusedParameters": false, "exactOptionalPropertyTypes": true, "noImplicitReturns": true, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true, "noImplicitOverride": true, "useUnknownInCatchVariables": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "isolatedModules": true, "verbatimModuleSyntax": false, "jsx": "react-jsx", "jsxImportSource": "react", "types": ["node"], "baseUrl": ".", "paths": { "@roo/*": ["../src/shared/*"] }, "skipLibCheck": true }, "include": ["src"], "exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"] }