launch.json 646 B

123456789101112131415161718192021
  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. // "preLaunchTask": "build rust sdk"
  13. },
  14. {
  15. "name": "app_flowy (profile mode)",
  16. "request": "launch",
  17. "type": "dart",
  18. "flutterMode": "profile"
  19. },
  20. ]
  21. }