36 lines
No EOL
1.1 KiB
JSON
36 lines
No EOL
1.1 KiB
JSON
{
|
|
// 使用 IntelliSense 以得知可用的屬性。
|
|
// 暫留以檢視現有屬性的描述。
|
|
// 如需詳細資訊,請瀏覽: https://go.microsoft.com/fwlink/?linkid=830387
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "啟動程式",
|
|
"skipFiles": [
|
|
"<node_internals>/**"
|
|
],
|
|
"program": "${workspaceFolder}/src/index.ts",
|
|
"outFiles": [
|
|
"${workspaceFolder}/**/*.js"
|
|
]
|
|
},
|
|
{
|
|
"type": "node",
|
|
"request": "launch",
|
|
"name": "Mocha Current Test",
|
|
"program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",
|
|
"args": [
|
|
"--no-timeouts",
|
|
"--colors",
|
|
"${file}",
|
|
"--require",
|
|
"ts-node/register"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"sourceMaps": true,
|
|
"internalConsoleOptions": "neverOpen"
|
|
}
|
|
]
|
|
} |