之前在项目之中使用 ts
, 但是每次都需要gulp
编译一次。而且debugger
及其麻烦。
后来看到了 ts-node
. 于是决定试一试
首先安装
sudo npm install ts-node --save-dev
然后修改了vscode 的启动文件。
{
"name": "Current TS File",
"type": "node",
"request": "launch",
"args": [
"${workspaceRoot}/src/index.ts" // 入口文件
],
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register"
],
"sourceMaps": true,
"cwd": "${workspaceRoot}",
"protocol": "inspector",
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen"
}
然后 f5 然后就可以了。
之后就不用再老是编译,给js
加断点,真的很麻烦..