kimi-code/apps/vscode/tsconfig.json
qer 6d0a046488
fix(vscode): keep sign-in reachable from the no-models screen (#2393)
* fix(vscode): keep sign-in reachable from the no-models screen

* fix(vscode): stop flagging bundled this.require(...) calls as VSIX runtime dependencies
2026-07-30 14:47:37 +08:00

19 lines
585 B
JSON

{
"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"]
}