launch.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. "env": {
  14. "RUST_LOG": "debug"
  15. },
  16. "cwd": "${workspaceRoot}"
  17. },
  18. {
  19. "name": "app_flowy(trace)",
  20. "request": "launch",
  21. "program": "${workspaceRoot}/lib/main.dart",
  22. "type": "dart",
  23. "preLaunchTask": "build_flowy_sdk",
  24. "env": {
  25. "RUST_LOG": "trace"
  26. },
  27. "cwd": "${workspaceRoot}"
  28. },
  29. {
  30. "name": "app_flowy (profile mode)",
  31. "request": "launch",
  32. "type": "dart",
  33. "flutterMode": "profile"
  34. },
  35. ]
  36. }