Skip to content

Commit

Permalink
chore: add vscode workspace config (#1204)
Browse files Browse the repository at this point in the history
Adds a recommended workspace file for vs code users. This allows
developers to view all the main projects in the repo in one view, with
the node modules resolution working as if each folder were opened
independently. See
https://code.visualstudio.com/docs/editor/multi-root-workspaces
  • Loading branch information
malandis authored Mar 29, 2024
1 parent 4250514 commit 95acc9f
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@ dist
.DS_Store
.idea
.node-version
*.tgz
*.tgz
!.vscode/*code-workspace
24 changes: 24 additions & 0 deletions .vscode/client-sdk-javascript.code-workspace
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"folders": [
{
"path": "..",
"name": "<root>",
},
{
"path": "../packages/core",
"name": "packages/core",
},
{
"path": "../packages/client-sdk-nodejs",
"name": "packages/client-sdk-nodejs",
},
{
"path": "../packages/client-sdk-web",
"name": "packages/client-sdk-web",
},
{
"path": "../packages/common-integration-tests",
"name": "packages/common-integration-tests",
},
]
}

0 comments on commit 95acc9f

Please sign in to comment.