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
- context
- IntelliJ
- Quartz
- Windows
- 단축키
- lsof
- grep
- vscode
- Source
- plugin
- ssh
- Mac
- GIT
- Eclipse
- port
- find
- netsh
- resource
- JavaScript
- bash
- 줄바꿈 문자
- import
- tomcat
- xargs
- Windows 10
- VirtualBox
- profile
- web.xml
- 네트워크
- maVen
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