From cf8c96be7d0fb77c06b1e207b3426fb71853fd9f Mon Sep 17 00:00:00 2001 From: snowgitea Date: Wed, 1 Jul 2026 17:55:05 +0800 Subject: [PATCH] chore: .vscode/launch.json --- .vscode/launch.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .vscode/launch.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..ae7a2c0 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,23 @@ +{ + "version": "0.2.0", + "configurations": [{ + "name": "Cool Admin", + "type": "node", + "request": "launch", + "cwd": "${workspaceRoot}", + "runtimeExecutable": "npm", + "windows": { + "runtimeExecutable": "npm.cmd" + }, + "runtimeArgs": [ + "run", + "dev" + ], + "env": { + "NODE_ENV": "local" + }, + "console": "integratedTerminal", + "restart": true, + "autoAttachChildProcesses": true + }] +}