launch.json 1002 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "example",
  9. "cwd": "example",
  10. "request": "launch",
  11. "env": {
  12. "Dart_LOG": "true"
  13. },
  14. "type": "dart"
  15. },
  16. {
  17. "name": "example (profile mode)",
  18. "cwd": "example",
  19. "request": "launch",
  20. "type": "dart",
  21. "env": {
  22. "Dart_LOG": "true"
  23. },
  24. "flutterMode": "profile"
  25. },
  26. {
  27. "name": "example (release mode)",
  28. "cwd": "example",
  29. "request": "launch",
  30. "type": "dart",
  31. "env": {
  32. "Dart_LOG": "true"
  33. },
  34. "flutterMode": "release"
  35. }
  36. ]
  37. }