Use vscode folder format

This commit is contained in:
Tangent Wantwight 2024-07-07 17:28:10 -04:00
parent 497731f62b
commit a2df9a4142
3 changed files with 20 additions and 27 deletions

3
.vscode/settings.json vendored Normal file
View file

@ -0,0 +1,3 @@
{
"editor.formatOnSave": true
}

17
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,17 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "Serve Esbuild",
"detail": "Run a local server serving html files & transpiling TS -> JS",
"command": "npm",
"type": "process",
"args": ["run", "serve"],
"problemMatcher": ["$esbuild-watch"],
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
}
]
}

View file

@ -1,27 +0,0 @@
{
"folders": [
{
"path": "."
}
],
"settings": {
"editor.formatOnSave": true
},
"tasks": {
"version": "2.0.0",
"tasks": [
{
"label": "Serve Esbuild",
"detail": "Run a local server serving html files & transpiling TS -> JS",
"command": "npm",
"type": "process",
"args": ["run", "serve"],
"problemMatcher": ["$esbuild-watch"],
"presentation": {
"reveal": "always",
"panel": "dedicated"
}
}
]
}
}