## Context This PR extends the multi-root VSCode workspace configuration introduced in #2937 by adding the remaining packages from the `packages/*` directories to the `twenty.code-workspace` folders array. ## Problem Previously, some packages were not added to the multi-root workspace configuration. As a result, when opening the repository as a vscode workspace, those packages were hidden from the VSCode Explorer because they were not part of the configured workspace folders. ## Benefits - Prevents packages from being hidden when the repository is opened as a vscode workspace. - Improves consistency and navigation across the monorepo workspace experience. ## Related PR - #2937
155 lines
3.7 KiB
Plaintext
155 lines
3.7 KiB
Plaintext
{
|
|
"folders": [
|
|
{
|
|
"name": "ROOT",
|
|
"path": "../"
|
|
},
|
|
{
|
|
"name": "packages/twenty-docker",
|
|
"path": "../packages/twenty-docker"
|
|
},
|
|
{
|
|
"name": "packages/twenty-front",
|
|
"path": "../packages/twenty-front"
|
|
},
|
|
{
|
|
"name": "packages/twenty-ui",
|
|
"path": "../packages/twenty-ui"
|
|
},
|
|
{
|
|
"name": "packages/twenty-emails",
|
|
"path": "../packages/twenty-emails"
|
|
},
|
|
{
|
|
"name": "packages/twenty-shared",
|
|
"path": "../packages/twenty-shared"
|
|
},
|
|
{
|
|
"name": "packages/twenty-server",
|
|
"path": "../packages/twenty-server"
|
|
},
|
|
{
|
|
"name": "packages/twenty-utils",
|
|
"path": "../packages/twenty-utils"
|
|
},
|
|
{
|
|
"name": "packages/twenty-zapier",
|
|
"path": "../packages/twenty-zapier"
|
|
},
|
|
{
|
|
"name": "packages/twenty-oxlint-rules",
|
|
"path": "../packages/twenty-oxlint-rules"
|
|
},
|
|
{
|
|
"name": "packages/twenty-e2e-testing",
|
|
"path": "../packages/twenty-e2e-testing"
|
|
},
|
|
{
|
|
"name": "packages/twenty-docs",
|
|
"path": "../packages/twenty-docs"
|
|
},
|
|
{
|
|
"name": "packages/create-twenty-app",
|
|
"path": "../packages/create-twenty-app"
|
|
},
|
|
{
|
|
"name": "packages/twenty-apps",
|
|
"path": "../packages/twenty-apps"
|
|
},
|
|
{
|
|
"name": "packages/twenty-claude-skills",
|
|
"path": "../packages/twenty-claude-skills"
|
|
},
|
|
{
|
|
"name": "packages/twenty-cli",
|
|
"path": "../packages/twenty-cli"
|
|
},
|
|
{
|
|
"name": "packages/twenty-client-sdk",
|
|
"path": "../packages/twenty-client-sdk"
|
|
},
|
|
{
|
|
"name": "packages/twenty-companion",
|
|
"path": "../packages/twenty-companion"
|
|
},
|
|
{
|
|
"name": "packages/twenty-front-component-renderer",
|
|
"path": "../packages/twenty-front-component-renderer"
|
|
},
|
|
{
|
|
"name": "packages/twenty-sdk",
|
|
"path": "../packages/twenty-sdk"
|
|
},
|
|
{
|
|
"name": "packages/twenty-website-new",
|
|
"path": "../packages/twenty-website-new"
|
|
}
|
|
],
|
|
"settings": {
|
|
"editor.formatOnSave": false,
|
|
"files.eol": "auto",
|
|
"[typescript]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.oxc": "explicit",
|
|
"source.addMissingImports": "always"
|
|
}
|
|
},
|
|
"[javascript]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.oxc": "explicit",
|
|
"source.addMissingImports": "always"
|
|
}
|
|
},
|
|
"[typescriptreact]": {
|
|
"editor.formatOnSave": true,
|
|
"editor.defaultFormatter": "esbenp.prettier-vscode",
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.oxc": "explicit",
|
|
"source.addMissingImports": "always"
|
|
}
|
|
},
|
|
"[json]": {
|
|
"editor.formatOnSave": true
|
|
},
|
|
"javascript.format.enable": false,
|
|
"typescript.format.enable": false,
|
|
"cSpell.enableFiletypes": [
|
|
"!javascript",
|
|
"!json",
|
|
"!typescript",
|
|
"!typescriptreact",
|
|
"md",
|
|
"mdx"
|
|
],
|
|
"cSpell.words": [
|
|
"twentyhq"
|
|
],
|
|
"typescript.preferences.importModuleSpecifier": "non-relative",
|
|
"[javascript][typescript][typescriptreact]": {
|
|
"editor.codeActionsOnSave": {
|
|
"source.fixAll.oxc": "explicit",
|
|
"source.addMissingImports": "always"
|
|
}
|
|
},
|
|
"search.exclude": {
|
|
"**/.yarn": true,
|
|
},
|
|
"files.exclude": {
|
|
"packages/": true
|
|
},
|
|
"oxc.lint.enable": true,
|
|
"jest.runMode": "on-demand",
|
|
"jest.disabledWorkspaceFolders": [
|
|
"ROOT",
|
|
"packages/twenty-zapier",
|
|
"packages/twenty-docker",
|
|
"packages/twenty-utils",
|
|
"packages/twenty-postgres"
|
|
]
|
|
}
|
|
}
|