]> git.kianting.info Git - uann/blob - .vscode/launch.json
initial commit
[uann] / .vscode / launch.json
1 {
2 // 使用 IntelliSense 以得知可用的屬性。
3 // 暫留以檢視現有屬性的描述。
4 // 如需詳細資訊,請瀏覽: https://go.microsoft.com/fwlink/?linkid=830387
5 "version": "0.2.0",
6 "configurations": [
7 {
8 "type": "node",
9 "request": "launch",
10 "name": "啟動程式",
11 "skipFiles": [
12 "<node_internals>/**"
13 ],
14 "program": "${workspaceFolder}/src/index.ts",
15 "outFiles": [
16 "${workspaceFolder}/**/*.js"
17 ]
18 },
19 {
20 "type": "node",
21 "request": "launch",
22 "name": "Mocha Current Test",
23 "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
24 "args": [
25 "--no-timeouts",
26 "--colors",
27 "${file}",
28 "--require",
29 "ts-node/register"
30 ],
31 "console": "integratedTerminal",
32 "sourceMaps": true,
33 "internalConsoleOptions": "neverOpen"
34 }
35 ]
36 }