Skip to content

Commit

Permalink
use webpack
Browse files Browse the repository at this point in the history
  • Loading branch information
felixSchober committed Nov 9, 2020
1 parent 437ac41 commit 0f93d80
Show file tree
Hide file tree
Showing 6 changed files with 1,094 additions and 34 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ out
node_modules
.vscode-test/
*.vsix
dist/
2 changes: 1 addition & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
},
Expand Down
1 change: 1 addition & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
{
"files.exclude": {
"out": true, // set this to true to hide the "out" folder with the compiled JS files
"dist": true, // set this to true to hide the "out" folder with the compiled JS files
"**/*.js": true,
"**/*.map": true,
"**/node_modules/**": true,
Expand Down
Loading

0 comments on commit 0f93d80

Please sign in to comment.