Created
May 12, 2022 05:33
-
-
Save joshpetit/93328b50a420760a01bbeabe370f31e9 to your computer and use it in GitHub Desktop.
Dart-code configuration options
This file contains hidden or 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
{ | |
"adapters" { | |
"dart-code": { | |
"name": "dart", | |
"command": [ | |
"node", | |
"$HOME/.vscode/<PATH TO BUNDLE>/src/debug/dart_debug_entry.js" | |
], | |
"attach": { | |
"pidProperty": "observatoryUri", | |
"pidSelect": "ask" | |
} | |
} | |
}, | |
"configurations": { | |
"Dart - Launch": { | |
"adapter": "dart-code", | |
"configuration": { | |
"request": "launch", | |
"cwd": "string", | |
"deviceId": "string", | |
"enableAsserts": "boolean", | |
"program": "string", | |
"showMemoryUsage": "boolean", | |
"flutterMode": "enum [ debug, release, profile ]", | |
"args": "array[string]", | |
"env": " ?? ", | |
"vmAdditionalArgs": "array[string]" | |
} | |
}, | |
"Dart - Attach": { | |
"adapter": "dart-code", | |
"configuration": { | |
"request": "attach", | |
"cwd": "string", | |
"packages": "string" | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment