Fix launch.json debugging config (#6484)

This commit is contained in:
Ryan Marsh
2019-08-08 15:10:09 -07:00
committed by Ian Sutherland
parent efaee65e90
commit cb2c720056

View File

@@ -60,7 +60,9 @@ Use the following [`launch.json`](https://code.visualstudio.com/docs/editor/debu
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
"internalConsoleOptions": "neverOpen",
"env": { "CI": "true" },
"disableOptimisticBPs": true
}
]
}