Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- plugin
- port
- Mac
- 단축키
- resource
- netsh
- grep
- xargs
- tomcat
- maVen
- find
- IntelliJ
- Windows 10
- GIT
- vscode
- bash
- lsof
- 네트워크
- VirtualBox
- web.xml
- Quartz
- ssh
- import
- profile
- Source
- 줄바꿈 문자
- context
- Eclipse
- Windows
- JavaScript
Archives
- Today
- Total
develog
[vscode] typescript 파일 디버깅 설정 본문
.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