Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Fix config for vscode
Browse files Browse the repository at this point in the history
Auditors: @aekeus

Was requiring string here and not working anymore
  • Loading branch information
bbondy committed Oct 13, 2016
1 parent d0a361a commit 7807cd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
// Environment variables passed to the program.
"env": {
"NODE_ENV": "development",
"npm_package_config_port": 8080
"npm_package_config_port": "8080"
},
// Use JavaScript source maps (if they exist).
"sourceMaps": true,
Expand Down Expand Up @@ -50,7 +50,7 @@
// Environment variables passed to the program.
"env": {
"NODE_ENV": "production",
"npm_package_config_port": 8080
"npm_package_config_port": "8080"
},
// Use JavaScript source maps (if they exist).
"sourceMaps": true,
Expand Down

1 comment on commit 7807cd8

@aekeus
Copy link
Member

@aekeus aekeus commented on 7807cd8 Oct 13, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

++

Please sign in to comment.