[GH-ISSUE #3355] CloudBeaver TypeScript Path Resolution Problem #1236

Closed
opened 2026-03-07 21:01:28 +03:00 by kerem · 0 comments
Owner

Originally created by @vivianma83 on GitHub (Apr 2, 2025).
Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/3355

Originally assigned to: @SychevAndrey on GitHub.

Please, describe your question in details.

I'm trying to set up the CloudBeaver project in VS Code for local development. I installed the dependencies using yarn install, and opened the root directory. However, in the webapp package, all imports like @cloudbeaver/core-app-settings show red squiggly lines in VS Code (cannot find module).

Image

I suspect it's related to the monorepo structure and TypeScript path aliases. I tried adding a tsconfig.json in the root directory like this:

{
  "compilerOptions": {
    "baseUrl": ".",
    "paths": {
      "@cloudbeaver/*": ["packages/*/src"]
    }
  }
}

But the issue still persists. Could you please clarify:

Is there an official tsconfig.json setup that works with VS Code?

How do you recommend setting up the editor for local development and type resolution?

Originally created by @vivianma83 on GitHub (Apr 2, 2025). Original GitHub issue: https://github.com/dbeaver/cloudbeaver/issues/3355 Originally assigned to: @SychevAndrey on GitHub. Please, describe your question in details. I'm trying to set up the CloudBeaver project in VS Code for local development. I installed the dependencies using `yarn install`, and opened the root directory. However, in the `webapp` package, all imports like `@cloudbeaver/core-app-settings` show red squiggly lines in VS Code (cannot find module). <img width="1109" alt="Image" src="https://github.com/user-attachments/assets/85c96360-52db-46c5-b065-45f8245cc561" /> I suspect it's related to the monorepo structure and TypeScript path aliases. I tried adding a `tsconfig.json` in the root directory like this: ``` { "compilerOptions": { "baseUrl": ".", "paths": { "@cloudbeaver/*": ["packages/*/src"] } } } ``` But the issue still persists. Could you please clarify: Is there an official tsconfig.json setup that works with VS Code? How do you recommend setting up the editor for local development and type resolution?
kerem 2026-03-07 21:01:28 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/cloudbeaver#1236
No description provided.