first version

This commit is contained in:
2025-05-31 20:22:20 +02:00
parent f483590a7a
commit 7383ce6977
27 changed files with 186 additions and 534 deletions
+20
View File
@@ -0,0 +1,20 @@
{
// 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": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}/src/main.ts",
"preLaunchTask": "npm: build",
"console": "integratedTerminal"
}
]
}