devcontainer lisäys

This commit is contained in:
2026-03-11 17:11:41 +00:00
parent 9fd3acd5d7
commit ae946a5e64
2 changed files with 44 additions and 0 deletions

20
.vscode/launch.json vendored Normal file
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.tsx",
"outFiles": [
"${workspaceFolder}/**/*.js"
]
}
]
}