Skip to content

Commit

Permalink
chore: Un-ignore launch files
Browse files Browse the repository at this point in the history
  • Loading branch information
svrooij committed Sep 15, 2021
1 parent f9e75e3 commit 6d10393
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
node_modules/
.vscode
lib/
.env
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": "node",
"preLaunchTask": "typescript compile",
"request": "launch",
"name": "Start Sonos2mqtt",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\lib\\index.js",
"envFile": "${workspaceFolder}/.env"
}
]
}
14 changes: 14 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "typescript",
"tsconfig": "tsconfig.json",
"problemMatcher":[
"$tsc"
],
"group": "build",
"label": "typescript compile"
}
]
}

0 comments on commit 6d10393

Please sign in to comment.