develog

[vscode] typescript 파일 디버깅 설정 본문

카테고리 없음

[vscode] typescript 파일 디버깅 설정

냐옴 2024. 9. 9. 10:54

 

.vscode/launch.json

{
    // 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>/**",
                "${workspaceFolder}/<node_internals>/**",
            ],
            "program": "${file}",
            "preLaunchTask": "tsc: build - lesson01/tsconfig.json",
            "outFiles": [
                "${workspaceFolder}/**/*.js"
            ]
        }
    ]
}
Comments