Initial commit

This commit is contained in:
2025-07-17 21:44:36 -04:00
commit f6b95ab306
7 changed files with 2328 additions and 0 deletions

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

@ -0,0 +1,27 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"args": [
"--extensionDevelopmentPath=${workspaceFolder}"
],
"name": "Launch Extension",
"outFiles": [
"${workspaceFolder}/out/**/*.js"
],
"preLaunchTask": "npm",
"request": "launch",
"type": "extensionHost"
},
{
"type": "node-terminal",
"name": "Run Script: compile",
"request": "launch",
"command": "npm run compile",
"cwd": "${workspaceFolder}"
}
]
}