mirror of
https://github.com/acedanger/finance.git
synced 2025-12-05 22:50:12 -08:00
- 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:
7
.vscode/settings.json
vendored
Normal file
7
.vscode/settings.json
vendored
Normal 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
20
.vscode/tasks.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user