Skip to content

Commit

Permalink
Setup VS Code tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
masked-rpgmaker committed Sep 19, 2020
1 parent 85ea865 commit 0f74ecf
Show file tree
Hide file tree
Showing 3 changed files with 40 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"recommendations": [
"redhat.vscode-yaml",
"ruakr.vsc-nwjs",
"juancasanova.awesometypescriptproblemmatcher"
]
}
16 changes: 16 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "nwjs",
"request": "launch",
"name": "Launch Game",
"skipFiles": [
"<node_internals>/**"
],
"webRoot": "${workspaceFolder}\\..\\..",
"nwjsVersion": "0.44.5",
"preLaunchTask": "Build plugin"
}
]
}
17 changes: 17 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"tasks": [
{
"type": "shell",
"label": "Build plugin",
"command": "npm run build",
"options": {
"cwd": "${workspaceFolder}"
},
"group": {
"kind": "build",
"isDefault": true
}
}
],
"version": "2.0.0"
}

0 comments on commit 0f74ecf

Please sign in to comment.