Started map porting

This commit is contained in:
dpassoni
2023-01-14 09:15:32 +01:00
parent 34e32be857
commit a75a491fe7
9 changed files with 811 additions and 38 deletions

View File

@@ -12,7 +12,8 @@
"webRoot": "${workspaceFolder}/public/",
"sourceMapPathOverrides": {
"src/*": "${workspaceFolder}/src/*"
}
},
"preLaunchTask": "server"
}
]
}

View File

@@ -1,33 +1,13 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "start",
"problemMatcher": [
{
"pattern": [
{
"regexp": ".",
"file": 1,
"location": 2,
"message": 3
}
],
"background": {
"activeOnStart": true,
"beginsPattern": ".",
"endsPattern": ".",
}
}
],
"isBackground": true,
"label": "npm: start",
"detail": "node ./bin/www",
"group": {
"kind": "build",
"isDefault": true
}
}
]
// See https://go.microsoft.com/fwlink/?LinkId=733558
// for the documentation about the tasks.json format
"version": "2.0.0",
"tasks": [
{
"label": "server",
"type": "shell",
"command": "npm run start",
"isBackground": true
}
]
}