Kode-cli/tsconfig.json
CrazyBoyM 7a3c4a7baa Refactor project structure and update documentation
- Update project branding from claude-cli to Kode
- Reorganize documentation with new development guides
- Add CONTRIBUTING.md and Chinese README
- Remove worktree_merge command and relocate system-design.md
- Update dependencies and package configuration
- Improve custom commands service with better error handling
- Clean up storage utilities and debug logging
2025-08-11 21:31:18 +08:00

66 lines
1.6 KiB
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "bundler",
"lib": [
"ES2022",
"DOM",
"DOM.Iterable"
],
"esModuleInterop": true,
"strict": false,
"noImplicitAny": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": false,
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false,
"outDir": "dist",
"rootDir": "src",
"jsx": "react",
"declaration": false,
"sourceMap": true,
"baseUrl": ".",
"paths": {
"*": ["node_modules/*", "src/types/*", "src/*"]
},
"types": ["bun-types", "node"],
"allowSyntheticDefaultImports": true,
"noEmitOnError": false,
"ignoreDeprecations": "5.0",
"useUnknownInCatchVariables": false,
"noErrorTruncation": true,
"noEmit": false,
"skipDefaultLibCheck": true,
"isolatedModules": true,
"allowUnreachableCode": true,
"allowUnusedLabels": true,
"noFallthroughCasesInSwitch": false,
"noImplicitReturns": false,
"noPropertyAccessFromIndexSignature": false,
"noUncheckedIndexedAccess": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"plugins": [
{
"transform": "ts-transform-define",
"type": "config",
"config": {
"MACRO": "src/constants/macros.ts"
}
}
]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"],
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node",
"transpileOnly": true,
"compilerOptions": {
"module": "NodeNext"
}
}
}