Skip to content
This repository has been archived by the owner on Jul 15, 2023. It is now read-only.

Commit

Permalink
Add launch.json for vscode (#528)
Browse files Browse the repository at this point in the history
  • Loading branch information
roblourens authored and Josh Goldberg committed Oct 8, 2018
1 parent ac395d8 commit d694f3d
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Run Tests",
"program": "${workspaceFolder}/node_modules/.bin/grunt",
"args": [
"mochaTest"
],
"outFiles": [
"${workspaceFolder}/dist/src/**/*.js"
]
}
]
}

0 comments on commit d694f3d

Please sign in to comment.