chore: add launch.json for vscode (#1307)

This commit is contained in:
Alessio Gravili 2023-03-04 18:48:29 +01:00 committed by GitHub
parent 392867781f
commit ff3cabaf17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

11
.vscode/launch.json vendored Normal file
View File

@ -0,0 +1,11 @@
{
"version": "0.2.0",
"configurations": [
{
"command": "pnpm run dev",
"name": "Run Dev",
"request": "launch",
"type": "node-terminal"
}
]
}