Setup esbuild
This commit is contained in:
parent
56d1560bc3
commit
e0ad798689
4 changed files with 427 additions and 7 deletions
|
@ -1,8 +1,27 @@
|
|||
{
|
||||
"folders": [
|
||||
{
|
||||
"path": "."
|
||||
}
|
||||
],
|
||||
"settings": {}
|
||||
}
|
||||
"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
Add a link
Reference in a new issue