-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add vscode workspace config (#1204)
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
Showing
2 changed files
with
26 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ dist | |
.DS_Store | ||
.idea | ||
.node-version | ||
*.tgz | ||
*.tgz | ||
!.vscode/*code-workspace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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", | ||
}, | ||
] | ||
} |