From 76f3ceec0bc48ac0ca8434b618f8a60d3f45bedd Mon Sep 17 00:00:00 2001 From: Rafael Audibert <32079912+rafaeelaudibert@users.noreply.github.com> Date: Wed, 29 Jan 2025 09:33:56 -0300 Subject: [PATCH] chore: Add no typegen config for vscode (#27880) --- .vscode/launch.json | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.vscode/launch.json b/.vscode/launch.json index d8b8160204498..a374f8409bf9d 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -15,6 +15,17 @@ }, "skipFiles": ["${workspaceFolder}/node_modules/kea-typegen/**/*.js"] }, + { + "name": "Frontend (no typegen)", + "command": "pnpm start-http", + "request": "launch", + "type": "node-terminal", + "cwd": "${workspaceFolder}", + "presentation": { + "group": "main" + }, + "skipFiles": ["${workspaceFolder}/node_modules/kea-typegen/**/*.js"] + }, { "name": "Frontend (https)", "command": "pnpm start",