Created
April 6, 2022 09:14
-
-
Save christianparpart/13aa2bfd30887a06fe7cf0251192c24f to your computer and use it in GitHub Desktop.
VScode launch.json for Solidity
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 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