launch.json 688 B

1234567891011121314151617181920212223
  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_flowy_sdk",
  13. "cwd": "${workspaceRoot}"
  14. },
  15. {
  16. "name": "app_flowy (profile mode)",
  17. "request": "launch",
  18. "type": "dart",
  19. "flutterMode": "profile"
  20. },
  21. ]
  22. }