mirror of
https://github.com/cline/cline.git
synced 2026-09-19 02:05:44 +08:00
Add a manager class to hold all the instances of the clients. They need to be reused, unlike the vscode clients which are just static method calls. Move the generated file src/standalone/server-setup.ts into src/generated/ directory. Add the host bridge address env var to the vscode launch.json In build-proto.js: path.join will normalize slashes in file paths, so use path.join(x, "a/b/c") instead of path.join(x, "a", "b", "c").
39 lines
1.0 KiB
JSON
39 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"isolatedModules": true,
|
|
"lib": ["es2022", "esnext.disposable", "DOM"],
|
|
"module": "esnext",
|
|
"moduleResolution": "Bundler",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitOverride": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": false,
|
|
"resolveJsonModule": true,
|
|
"rootDir": ".",
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "es2022",
|
|
"useDefineForClassFields": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@api/*": ["src/api/*"],
|
|
"@core/*": ["src/core/*"],
|
|
"@generated/*": ["src/generated/*"],
|
|
"@hosts/*": ["src/hosts/*"],
|
|
"@integrations/*": ["src/integrations/*"],
|
|
"@packages/*": ["src/packages/*"],
|
|
"@services/*": ["src/services/*"],
|
|
"@shared/*": ["src/shared/*"],
|
|
"@utils/*": ["src/utils/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*", "scripts/**/*"],
|
|
"exclude": ["node_modules", ".vscode-test", "webview-ui"]
|
|
}
|