Commit inicial

This commit is contained in:
2025-04-07 11:32:08 -03:00
commit 66fdc50c31
29 changed files with 971 additions and 0 deletions

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

@@ -0,0 +1,24 @@
// A launch configuration that compiles the extension and then opens it inside a new window
// 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": [
{
"name": "Run Extension",
"type": "extensionHost",
"request": "launch",
"cwd": "${workspaceFolder}/testDirectory",
"args": [
"--extensionDevelopmentPath=${workspaceFolder}",
// "${workspaceFolder}/testDirectory",
"--disable-extensions"
],
"outFiles": [
"${workspaceFolder}/dist/**/*.js"
],
"preLaunchTask": "${defaultBuildTask}"
}
]
}