kimi-code / apps /vscode /tsconfig.json
SaylorTwift's picture
SaylorTwift HF Staff
Add files using upload-large-folder tool
6a2bc3b verified
Raw
History Blame Contribute Delete
601 Bytes
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"lib": ["ES2024"],
"types": ["node", "vscode"],
"sourceMap": true,
"declaration": false,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"paths": {
"@/*": ["./src/*"],
"shared/*": ["./shared/*"],
"@moonshot-ai/kimi-code-sdk": ["../../packages/node-sdk/src/index.ts"]
}
},
"include": ["src/**/*", "shared/**/*", "test/**/*"],
"exclude": ["dist", "node_modules", "webview-ui", "test/settings-store.test.ts", "test/app-init.test.ts", "test/webview"]
}