Skip to content

Commit 0f74ecf

Browse files
Setup VS Code tasks
1 parent 85ea865 commit 0f74ecf

File tree

3 files changed

+40
-0
lines changed

3 files changed

+40
-0
lines changed

.vscode/extensions.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"recommendations": [
3+
"redhat.vscode-yaml",
4+
"ruakr.vsc-nwjs",
5+
"juancasanova.awesometypescriptproblemmatcher"
6+
]
7+
}

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [
4+
{
5+
"type": "nwjs",
6+
"request": "launch",
7+
"name": "Launch Game",
8+
"skipFiles": [
9+
"<node_internals>/**"
10+
],
11+
"webRoot": "${workspaceFolder}\\..\\..",
12+
"nwjsVersion": "0.44.5",
13+
"preLaunchTask": "Build plugin"
14+
}
15+
]
16+
}

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"tasks": [
3+
{
4+
"type": "shell",
5+
"label": "Build plugin",
6+
"command": "npm run build",
7+
"options": {
8+
"cwd": "${workspaceFolder}"
9+
},
10+
"group": {
11+
"kind": "build",
12+
"isDefault": true
13+
}
14+
}
15+
],
16+
"version": "2.0.0"
17+
}

0 commit comments

Comments
 (0)