Skip to content

Commit

Permalink
Added VSCode config files to source control
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesMessinger committed Mar 5, 2020
1 parent 0637770 commit 70ff697
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ nbproject
# IDEs & Text Editors
.idea
.sublime-*
.vscode
.vscode/settings.json
.netbeans
nbproject

Expand Down
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Run Mocha",
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
"outFiles": [
"${workspaceFolder}/lib/**/*.js"
]
}
]
}
27 changes: 27 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"problemMatcher": [
"$tsc"
],
"group": {
"kind": "build",
"isDefault": true
}
},

{
"type": "npm",
"script": "test",
"group": {
"kind": "test",
"isDefault": true
}
}
]
}

0 comments on commit 70ff697

Please sign in to comment.