Skip to content

Instantly share code, notes, and snippets.

@christianparpart
Created April 6, 2022 09:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save christianparpart/13aa2bfd30887a06fe7cf0251192c24f to your computer and use it in GitHub Desktop.
Save christianparpart/13aa2bfd30887a06fe7cf0251192c24f to your computer and use it in GitHub Desktop.
VScode launch.json for Solidity
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "solc",
"type": "cppdbg",
"request": "launch",
"program": "${workspaceFolder}/build/solc/solc.exe",
"args": [
],
"stopAtEntry": false,
"setupCommands": [
{
"description": "Enable all-exceptions",
"text": "catch throw",
"ignoreFailures": true
}
],
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": true
},
{
"name": "isoltest",
"type": "cppvsdbg",
"request": "launch",
"program": "${workspaceFolder}/build/test/tools/isoltest.exe",
"args": [
],
"stopAtEntry": false,
"cwd": "${workspaceFolder}",
"environment": [],
"externalConsole": false
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment