first commit

This commit is contained in:
HPL-JesusCastro
2026-05-07 20:53:31 +08:00
commit def3dfb60d
17 changed files with 1413 additions and 0 deletions

17
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,17 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm: compile"
}
]
}

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

@@ -0,0 +1,19 @@
{
"version": "2.0.0",
"tasks": [
{
"type": "npm",
"script": "compile",
"group": { "kind": "build", "isDefault": true },
"problemMatcher": ["$tsc"],
"label": "npm: compile"
},
{
"type": "npm",
"script": "watch",
"isBackground": true,
"problemMatcher": ["$tsc-watch"],
"label": "npm: watch"
}
]
}