mirror of
https://github.com/MoonshotAI/kimi-code.git
synced 2026-08-03 21:45:27 +00:00
* fix(vscode): keep sign-in reachable from the no-models screen * fix(vscode): stop flagging bundled this.require(...) calls as VSIX runtime dependencies
19 lines
585 B
JSON
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"]
|
|
}
|