Skip to content

Commit

Permalink
Now includes .vscode folder for easy usage in vscode.
Browse files Browse the repository at this point in the history
  • Loading branch information
F0903 committed Aug 26, 2021
1 parent 1ad8a31 commit b24d381
Show file tree
Hide file tree
Showing 3 changed files with 44 additions and 1 deletion.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
.vscode
node_modules
out
bin
11 changes: 11 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"configurations": [
{
"type": "node-terminal",
"name": "Run Script: start",
"request": "launch",
"command": "npm run start",
"cwd": "${workspaceFolder}"
}
]
}
33 changes: 33 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"group": "build",
"problemMatcher": [],
"label": "npm: start"
},
{
"type": "npm",
"script": "build:dev",
"group": "build",
"problemMatcher": [],
"label": "npm: build dev"
},
{
"type": "npm",
"script": "build:pub",
"group": "build",
"problemMatcher": [],
"label": "npm: build pub"
},
{
"type": "npm",
"script": "package",
"group": "build",
"problemMatcher": [],
"label": "npm: package"
}
]
}

0 comments on commit b24d381

Please sign in to comment.