VScode로 TypeScript 디버깅
5535 단어 TypeScriptVSCode
개요
VScode의 디버그 화면
이런 느낌의 화면에서 디버깅할 수 있다.
설정 방법
VSCode의 TypeScript Devic 프로세스는 다음과 같습니다.
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Debugging TypeScript",
"program": "${file}",
// tasks.json のlabelで指定
"preLaunchTask": "Compile TypeScript",
"cwd": "${workspaceFolder}",
"outFiles": [
"${workspaceFolder}/build/**/*.js"
]
}
]
}
// ${file}: 今開いているコード
// ${workspaceFolder} : VS Codeを開いたフォルダ
.vscode/tasks.json{
"version": "2.0.0",
"tasks": [
{
"label": "Compile TypeScript",
"type": "shell",
"command": "yarn build",
"problemMatcher": []
}
]
}
디버그 실행
fn+F5에서 디버깅을 시작합니다.
※
node.js version could not be determined
의 일지가 나온 이유는 앞으로 계속 볼 것참고 자료
https://code.visualstudio.com/docs/editor/debugging
https://code.visualstudio.com/docs/editor/tasks#vscode
Reference
이 문제에 관하여(VScode로 TypeScript 디버깅), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/selmertsx/items/c7a17261dcf802df2422텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)