vscode setting pretty standard with TypeScript

This commit is contained in:
Ben Carter
2023-09-10 02:56:59 -04:00
parent 01e0fa0328
commit b95e7e074e
2 changed files with 23 additions and 0 deletions

5
.vscode/extensions.json vendored Normal file
View File

@@ -0,0 +1,5 @@
{
"recommendations": [
"ms-vscode.vscode-typescript-tslint-plugin"
]
}

18
.vscode/tasks.json vendored Normal file
View File

@@ -0,0 +1,18 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "dev",
"problemMatcher": "$tsc-watch",
"isBackground": true,
"presentation": {
"reveal": "never"
},
"group": {
"kind": "build",
"isDefault": true
}
}
]
}