Use vscode folder format
This commit is contained in:
parent
497731f62b
commit
a2df9a4142
3 changed files with 20 additions and 27 deletions
3
.vscode/settings.json
vendored
Normal file
3
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
{
|
||||
"editor.formatOnSave": true
|
||||
}
|
17
.vscode/tasks.json
vendored
Normal file
17
.vscode/tasks.json
vendored
Normal 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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
Loading…
Add table
Reference in a new issue