launch.json 597 B

1234567891011121314151617181920
  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": "app_flowy",
  9. "request": "launch",
  10. "program": "${workspaceRoot}/lib/main.dart",
  11. "type": "dart",
  12. },
  13. {
  14. "name": "app_flowy (profile mode)",
  15. "request": "launch",
  16. "type": "dart",
  17. "flutterMode": "profile"
  18. },
  19. ]
  20. }