- removed .vscode from .gitignore to resolve #13

- updated libraries to further support #14
- feat: Add environment configuration files and update dependencies for Node adapter
This commit is contained in:
GitHub Copilot
2025-05-01 21:03:09 +00:00
parent 6b55395e73
commit 8058df41fd
7 changed files with 220 additions and 4 deletions

7
.vscode/settings.json vendored Normal file
View File

@@ -0,0 +1,7 @@
{
"terminal.integrated.cwd": "${workspaceFolder}",
"terminal.integrated.enablePersistentSessions": true,
"terminal.integrated.persistentSessionReviveProcess": "onExitAndWindowClose",
"terminal.integrated.enableMultiLinePasteWarning": "auto",
"terminal.integrated.splitCwd": "workspaceRoot"
}

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

@@ -0,0 +1,20 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"problemMatcher": [],
"label": "npm: dev",
"detail": "astro dev",
"runOptions": {
"runOn": "folderOpen"
},
"isBackground": true,
"presentation": {
"reveal": "always",
"panel": "new"
}
}
]
}