Skip to content

Commit

Permalink
chore: add vscode launch and build profiles
Browse files Browse the repository at this point in the history
  • Loading branch information
KiTTYsh committed Oct 5, 2024
1 parent 2f8bab6 commit 9aa98eb
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,6 @@
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"editor.formatOnSave": false
"editor.formatOnSave": false,
"npm.packageManager": "pnpm"
}
16 changes: 16 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -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"
}
]
}

0 comments on commit 9aa98eb

Please sign in to comment.