Skip to content

Commit

Permalink
Add feature flags to Visual Studio Code Launch file (#2123)
Browse files Browse the repository at this point in the history
Add FF_* to VSCode launch.json
  • Loading branch information
hectorgomezv authored Nov 13, 2024
1 parent de7f488 commit 5a13522
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,13 @@
"program": "${workspaceFolder}/src/main.ts",
"outFiles": ["${workspaceFolder}/dist/**/*.js"],
"console": "integratedTerminal",
"outputCapture": "std"
"outputCapture": "std",
"env": {
"FF_AUTH": "true",
"FF_EMAIL": "true",
"FF_ACCOUNTS": "true",
"FF_DELEGATES_V2": "true"
}
},
{
"type": "node",
Expand Down

0 comments on commit 5a13522

Please sign in to comment.