├── .eslintrc.json ├── .github ├── FUNDING.yml ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── test.yml ├── .gitignore ├── .husky └── pre-commit ├── .npmrc ├── .prettierrc ├── .release-it.json ├── .repo_ignore ├── .sourcegraph ├── project.rule.md └── tests.rule.md ├── .vscode-test.mjs ├── .vscode ├── cody.json ├── extensions.json ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── .windsurfrules ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── TELEMETRY.md ├── esbuild.js ├── package.json ├── pnpm-lock.yaml ├── resources ├── cody-plus-plus.png └── codypp-logo.png ├── scripts └── git-diff.sh ├── src ├── __tests__ │ ├── README.md │ └── extension.test.ts ├── commands │ ├── __tests__ │ │ ├── add-custom-command.test.ts │ │ ├── add-to-cody.test.ts │ │ └── provider-commands.test.ts │ ├── add-custom-command.ts │ ├── add-to-cody.ts │ └── provider-commands.ts ├── constants │ ├── __tests__ │ │ ├── cody.test.ts │ │ ├── telemetry.test.ts │ │ └── webview.test.ts │ ├── cody.ts │ ├── telemetry.ts │ └── webview.ts ├── core │ ├── cody │ │ ├── __tests__ │ │ │ └── commands.test.ts │ │ └── commands.ts │ ├── filesystem │ │ ├── __tests__ │ │ │ ├── config.test.ts │ │ │ ├── operations.gitignore.test.ts │ │ │ ├── operations.test.ts │ │ │ ├── processor.test.ts │ │ │ └── validation.test.ts │ │ ├── config.ts │ │ ├── operations.ts │ │ ├── processor.ts │ │ └── validation.ts │ └── llm │ │ ├── __tests__ │ │ ├── config.test.ts │ │ ├── constants.test.ts │ │ └── types.test.ts │ │ ├── constants.ts │ │ ├── index.ts │ │ ├── providers │ │ ├── gemini │ │ │ └── index.ts │ │ ├── openai-compatible │ │ │ ├── index.ts │ │ │ └── types.ts │ │ └── openai │ │ │ └── index.ts │ │ ├── types.ts │ │ └── utils.ts ├── extension.ts ├── pnpm-lock.yaml ├── services │ ├── __tests__ │ │ ├── customCommand.service.test.ts │ │ └── telemetry.service.test.ts │ ├── customCommand.service.ts │ └── telemetry.service.ts ├── utils │ ├── __tests__ │ │ └── workspace-config.test.ts │ ├── index.ts │ └── workspace-config.ts ├── views │ ├── BaseWebview.ts │ ├── CustomCommandsWebview.ts │ └── MainWebviewView.ts └── webviews │ ├── .eslintrc.cjs │ ├── .gitignore │ ├── .prettierrc │ ├── README.md │ ├── index.html │ ├── package.json │ ├── pnpm-lock.yaml │ ├── public │ └── vite.svg │ ├── src │ ├── App.tsx │ ├── assets │ │ └── react.svg │ ├── components │ │ ├── CommandForm.tsx │ │ └── CommandList.tsx │ ├── index.css │ ├── lib │ │ └── vscodeApi.ts │ ├── main.tsx │ ├── pages │ │ ├── custom-commands.tsx │ │ └── system-instruction.tsx │ ├── types │ │ └── global.d.ts │ └── vite-env.d.ts │ ├── tsconfig.json │ ├── tsconfig.node.json │ └── vite.config.ts └── tsconfig.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | pnpm lint-staged 2 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | enable-pre-post-scripts = true -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.prettierrc -------------------------------------------------------------------------------- /.release-it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.release-it.json -------------------------------------------------------------------------------- /.repo_ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.repo_ignore -------------------------------------------------------------------------------- /.sourcegraph/project.rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.sourcegraph/project.rule.md -------------------------------------------------------------------------------- /.sourcegraph/tests.rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.sourcegraph/tests.rule.md -------------------------------------------------------------------------------- /.vscode-test.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.vscode-test.mjs -------------------------------------------------------------------------------- /.vscode/cody.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.vscode/cody.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.vscodeignore -------------------------------------------------------------------------------- /.windsurfrules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/.windsurfrules -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/README.md -------------------------------------------------------------------------------- /TELEMETRY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/TELEMETRY.md -------------------------------------------------------------------------------- /esbuild.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/esbuild.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /resources/cody-plus-plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/resources/cody-plus-plus.png -------------------------------------------------------------------------------- /resources/codypp-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/resources/codypp-logo.png -------------------------------------------------------------------------------- /scripts/git-diff.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/scripts/git-diff.sh -------------------------------------------------------------------------------- /src/__tests__/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/__tests__/README.md -------------------------------------------------------------------------------- /src/__tests__/extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/__tests__/extension.test.ts -------------------------------------------------------------------------------- /src/commands/__tests__/add-custom-command.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/commands/__tests__/add-custom-command.test.ts -------------------------------------------------------------------------------- /src/commands/__tests__/add-to-cody.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/commands/__tests__/add-to-cody.test.ts -------------------------------------------------------------------------------- /src/commands/__tests__/provider-commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/commands/__tests__/provider-commands.test.ts -------------------------------------------------------------------------------- /src/commands/add-custom-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/commands/add-custom-command.ts -------------------------------------------------------------------------------- /src/commands/add-to-cody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/commands/add-to-cody.ts -------------------------------------------------------------------------------- /src/commands/provider-commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/commands/provider-commands.ts -------------------------------------------------------------------------------- /src/constants/__tests__/cody.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/constants/__tests__/cody.test.ts -------------------------------------------------------------------------------- /src/constants/__tests__/telemetry.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/constants/__tests__/telemetry.test.ts -------------------------------------------------------------------------------- /src/constants/__tests__/webview.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/constants/__tests__/webview.test.ts -------------------------------------------------------------------------------- /src/constants/cody.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/constants/cody.ts -------------------------------------------------------------------------------- /src/constants/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/constants/telemetry.ts -------------------------------------------------------------------------------- /src/constants/webview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/constants/webview.ts -------------------------------------------------------------------------------- /src/core/cody/__tests__/commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/cody/__tests__/commands.test.ts -------------------------------------------------------------------------------- /src/core/cody/commands.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/cody/commands.ts -------------------------------------------------------------------------------- /src/core/filesystem/__tests__/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/filesystem/__tests__/config.test.ts -------------------------------------------------------------------------------- /src/core/filesystem/__tests__/operations.gitignore.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/filesystem/__tests__/operations.gitignore.test.ts -------------------------------------------------------------------------------- /src/core/filesystem/__tests__/operations.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/filesystem/__tests__/operations.test.ts -------------------------------------------------------------------------------- /src/core/filesystem/__tests__/processor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/filesystem/__tests__/processor.test.ts -------------------------------------------------------------------------------- /src/core/filesystem/__tests__/validation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/filesystem/__tests__/validation.test.ts -------------------------------------------------------------------------------- /src/core/filesystem/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/filesystem/config.ts -------------------------------------------------------------------------------- /src/core/filesystem/operations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/filesystem/operations.ts -------------------------------------------------------------------------------- /src/core/filesystem/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/filesystem/processor.ts -------------------------------------------------------------------------------- /src/core/filesystem/validation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/filesystem/validation.ts -------------------------------------------------------------------------------- /src/core/llm/__tests__/config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/__tests__/config.test.ts -------------------------------------------------------------------------------- /src/core/llm/__tests__/constants.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/__tests__/constants.test.ts -------------------------------------------------------------------------------- /src/core/llm/__tests__/types.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/__tests__/types.test.ts -------------------------------------------------------------------------------- /src/core/llm/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/constants.ts -------------------------------------------------------------------------------- /src/core/llm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/index.ts -------------------------------------------------------------------------------- /src/core/llm/providers/gemini/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/providers/gemini/index.ts -------------------------------------------------------------------------------- /src/core/llm/providers/openai-compatible/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/providers/openai-compatible/index.ts -------------------------------------------------------------------------------- /src/core/llm/providers/openai-compatible/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/providers/openai-compatible/types.ts -------------------------------------------------------------------------------- /src/core/llm/providers/openai/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/providers/openai/index.ts -------------------------------------------------------------------------------- /src/core/llm/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/types.ts -------------------------------------------------------------------------------- /src/core/llm/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/core/llm/utils.ts -------------------------------------------------------------------------------- /src/extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/extension.ts -------------------------------------------------------------------------------- /src/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/services/__tests__/customCommand.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/services/__tests__/customCommand.service.test.ts -------------------------------------------------------------------------------- /src/services/__tests__/telemetry.service.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/services/__tests__/telemetry.service.test.ts -------------------------------------------------------------------------------- /src/services/customCommand.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/services/customCommand.service.ts -------------------------------------------------------------------------------- /src/services/telemetry.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/services/telemetry.service.ts -------------------------------------------------------------------------------- /src/utils/__tests__/workspace-config.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/utils/__tests__/workspace-config.test.ts -------------------------------------------------------------------------------- /src/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/utils/index.ts -------------------------------------------------------------------------------- /src/utils/workspace-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/utils/workspace-config.ts -------------------------------------------------------------------------------- /src/views/BaseWebview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/views/BaseWebview.ts -------------------------------------------------------------------------------- /src/views/CustomCommandsWebview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/views/CustomCommandsWebview.ts -------------------------------------------------------------------------------- /src/views/MainWebviewView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/views/MainWebviewView.ts -------------------------------------------------------------------------------- /src/webviews/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/.eslintrc.cjs -------------------------------------------------------------------------------- /src/webviews/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/.gitignore -------------------------------------------------------------------------------- /src/webviews/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/.prettierrc -------------------------------------------------------------------------------- /src/webviews/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/README.md -------------------------------------------------------------------------------- /src/webviews/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/index.html -------------------------------------------------------------------------------- /src/webviews/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/package.json -------------------------------------------------------------------------------- /src/webviews/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/pnpm-lock.yaml -------------------------------------------------------------------------------- /src/webviews/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/public/vite.svg -------------------------------------------------------------------------------- /src/webviews/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/src/App.tsx -------------------------------------------------------------------------------- /src/webviews/src/assets/react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/src/assets/react.svg -------------------------------------------------------------------------------- /src/webviews/src/components/CommandForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/src/components/CommandForm.tsx -------------------------------------------------------------------------------- /src/webviews/src/components/CommandList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/src/components/CommandList.tsx -------------------------------------------------------------------------------- /src/webviews/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/src/index.css -------------------------------------------------------------------------------- /src/webviews/src/lib/vscodeApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/src/lib/vscodeApi.ts -------------------------------------------------------------------------------- /src/webviews/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/src/main.tsx -------------------------------------------------------------------------------- /src/webviews/src/pages/custom-commands.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/src/pages/custom-commands.tsx -------------------------------------------------------------------------------- /src/webviews/src/pages/system-instruction.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/src/pages/system-instruction.tsx -------------------------------------------------------------------------------- /src/webviews/src/types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/src/types/global.d.ts -------------------------------------------------------------------------------- /src/webviews/src/vite-env.d.ts: -------------------------------------------------------------------------------- 1 | /// 2 | -------------------------------------------------------------------------------- /src/webviews/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/tsconfig.json -------------------------------------------------------------------------------- /src/webviews/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/tsconfig.node.json -------------------------------------------------------------------------------- /src/webviews/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/src/webviews/vite.config.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mnismt/codyplusplus/HEAD/tsconfig.json --------------------------------------------------------------------------------