You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
WebCAD/.vscode/launch.json

96 lines
3.2 KiB

8 years ago
{
"version": "0.2.0",
"configurations": [
{
"name": "Chrome调试",
8 years ago
"type": "chrome",
"request": "launch",
"disableNetworkCache": false,
"url": "http://localhost:7778",
"webRoot": "${workspaceFolder}",
"skipFiles": [
"*.dll.js" //跳过.js文件的调试,避免调试堆栈进入js文件
],
"runtimeArgs": [
//"--disable-gpu-vsync",//关闭垂直同步
//"--disable-frame-rate-limit",//关闭帧率限制(对于高刷新的显示器有用)
]
8 years ago
},
{
"name": "Chrome调试(使用生产api)",
"type": "chrome",
"request": "launch",
"disableNetworkCache": false,
"url": "http://localhost:7778/?server=api",
"webRoot": "${workspaceFolder}",
"skipFiles": [
"*.dll.js" //跳过.js文件的调试,避免调试堆栈进入js文件
]
},
//Ref: https://github.com/Microsoft/vscode-recipes/blob/master/debugging-jest-tests/.vscode/launch.json
{
"name": "Jest 所有文件",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
"args": [
"--runInBand"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js"
]
},
{
"name": "Jest 当前文件",
"type": "node",
"request": "launch",
"program": "${workspaceFolder}/node_modules/jest/bin/jest",
"args": [
"${fileBasename}"
],
"console": "integratedTerminal",
"internalConsoleOptions": "neverOpen",
"smartStep": false,
"skipFiles": [
"${workspaceFolder}/node_modules/**/*.js"
]
},
//ref:https://gist.github.com/cecilemuller/2963155d0f249c1544289b78a1cdd695?permalink_comment_id=4101212#gistcomment-4101212
{
"name": "运行 当前TS文件",
"type": "node",
"request": "launch",
"args": [
"${relativeFile}"
],
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register/transpile-only",
],
"cwd": "${workspaceFolder}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
},
{
"name": "分析ts文件依赖树",
"type": "node",
"request": "launch",
"args": [
"./utils/dep-tree.ts",
"${file}"
],
"runtimeArgs": [
"--nolazy",
"-r",
"ts-node/register/transpile-only"
],
"cwd": "${workspaceFolder}",
"protocol": "inspector",
"internalConsoleOptions": "openOnSessionStart"
8 years ago
}
]
}