Add vscode workspace file (#2846)

* Create vscode workspace file

* Update paths in sourceMapPathOverrides

* Add bit-web as folder
This commit is contained in:
Thomas Rittson 2022-06-08 06:58:27 +10:00 committed by GitHub
parent d336d4dfa3
commit 1d533f801d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 42 additions and 0 deletions

42
clients.code-workspace Normal file
View File

@ -0,0 +1,42 @@
{
"folders": [
{
"name": "root",
"path": "."
},
{
"name": "web vault",
"path": "apps/web"
},
{
"name": "web vault (bit)",
"path": "bitwarden_license/bit-web"
},
{
"name": "cli",
"path": "apps/cli"
},
{
"name": "desktop",
"path": "apps/desktop"
},
{
"name": "browser",
"path": "apps/browser"
},
{
"name": "libs",
"path": "libs"
}
],
"settings": {
"debug.javascript.terminalOptions": {
"sourceMapPathOverrides": {
"meteor://💻app/*": "${workspaceFolder}/*",
"webpack:///./~/*": "${workspaceFolder}/node_modules/*",
"webpack://?:*/*": "${workspaceFolder}/*",
"webpack://@bitwarden/cli/*": "${workspaceFolder}/apps/cli/*"
}
}
}
}