all files

This commit is contained in:
koreacomp5
2025-09-08 08:35:13 +09:00
parent b23da3c786
commit 01f6323132
10 changed files with 2507 additions and 2 deletions

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

@@ -0,0 +1,18 @@
{
// IntelliSense를 사용하여 가능한 특성에 대해 알아보세요.
// 기존 특성에 대한 설명을 보려면 가리킵니다.
// 자세한 내용을 보려면 https://go.microsoft.com/fwlink/?linkid=830387을(를) 방문하세요.
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "프로그램 시작",
"skipFiles": [
"<node_internals>/**"
],
"program": "${file}"
}
]
}