From ae9e6453ce60e9e08a0c0776d4051c31fe292172 Mon Sep 17 00:00:00 2001 From: Allison Ryan <77211884+allisonryan0002@users.noreply.github.com> Date: Thu, 24 Mar 2022 12:52:29 -0500 Subject: [PATCH] feat: add launch config for sandbox (#95) * feat: launch config for sandbox * refactor: match existing naming --- .vscode/launch.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index b4e33cec..1b855b10 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -29,6 +29,12 @@ "type": "dart", "program": "lib/main_production.dart", "args": ["--flavor", "production", "--target", "lib/main_production.dart"] + }, + { + "name": "Launch component sandbox", + "request": "launch", + "type": "dart", + "program": "packages/pinball_components/sandbox/lib/main.dart" } ] }