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
24 lines
650 B
JSON
24 lines
650 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"lib": ["DOM", "DOM.Iterable", "ES2024"],
|
|
"module": "ESNext",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"ignoreDeprecations": "6.0",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"shared/*": ["../shared/*"]
|
|
}
|
|
},
|
|
"include": ["src", "../test/settings-store.test.ts", "../test/app-init.test.ts"]
|
|
}
|