Skip to content

Commit

Permalink
outfiles needs to be globbed (#1615)
Browse files Browse the repository at this point in the history
  • Loading branch information
jpoon authored Apr 30, 2017
1 parent cf49603 commit 9f9f853
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"args": ["--extensionDevelopmentPath=${workspaceRoot}" ],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out" ],
"outFiles": [ "${workspaceRoot}/{out, node_modules}/**/*.js" ],
"preLaunchTask": "build",
"internalConsoleOptions": "openOnSessionStart"
},
Expand All @@ -24,7 +24,7 @@
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out" ]
"outFiles": [ "${workspaceRoot}/{out, node_modules}/**/*.js" ]
},
{
"name": "Run Tests",
Expand All @@ -37,7 +37,7 @@
],
"stopOnEntry": false,
"sourceMaps": true,
"outFiles": [ "${workspaceRoot}/out" ],
"outFiles": [ "${workspaceRoot}/{out, node_modules}/**/*.js" ],
"preLaunchTask": "build",
"internalConsoleOptions": "openOnSessionStart"
}
Expand Down

0 comments on commit 9f9f853

Please sign in to comment.