1
1
mirror of https://github.com/kokonect-link/cherrypick synced 2025-01-24 02:34:00 +09:00

chore: add vscode launch and build profiles

This commit is contained in:
Kitty Cat 2024-09-30 12:28:57 -04:00
parent 2f8bab656c
commit 9aa98ebb31
No known key found for this signature in database
GPG Key ID: 5DD88428CF598F42
3 changed files with 35 additions and 1 deletions

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

@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "CherryPick",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/packages/backend/built/boot/entry.js"
}
]
}

View File

@ -11,5 +11,6 @@
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"editor.formatOnSave": false
"editor.formatOnSave": false,
"npm.packageManager": "pnpm"
}

16
.vscode/tasks.json vendored Normal file
View File

@ -0,0 +1,16 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "build",
"group": {
"kind": "build",
"isDefault": true
},
"problemMatcher": [],
"label": "pnpm: build",
"detail": "pnpm build-pre && pnpm -r build && pnpm build-assets"
}
]
}