Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ node_modules
*.vsix
.DS_Store
.history
.idea
2 changes: 2 additions & 0 deletions .vscodeignore
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
.vscode/**
.vscode-test/**
.idea/**
out/test/**
src/**
test/**
public/**
.gitignore
vsc-extension-quickstart.md
**/tsconfig.json
Expand Down
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,6 @@ Functionalities covered:
- Router
- Communication between Webview and Extension
- Integrated configuration
- Mock API Request
- Mock API Request

You can also run the view in browser for easier debug: `npm run browser`. Note any code using `vscode` will fail. Its recommended to add some mocks to mimic vscode api. You can detect running in browser versus vscode webview using something similar to `const isBrowserDebug = window.self === window.top;`.
Loading