GuessWhoIAmS/.vscode/launch.json

23 lines
763 B
JSON
Raw Normal View History

2023-08-31 11:28:35 +00:00
{
// 使用 IntelliSense 以得知可用的屬性。
// 暫留以檢視現有屬性的描述。
// 如需詳細資訊,請瀏覽: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "attach",
"name": "Attach to Remote",
// "address": "jianmiau.tk:9229/87f42d5b-97bf-4d25-a4d7-37306985459a",
2023-08-31 11:52:55 +00:00
"address": "127.0.0.1:9229/87f42d5b-97bf-4d25-a4d7-37306985459a",
2023-08-31 11:28:35 +00:00
"port": 9229,
"localRoot": "${workspaceFolder}",
2023-09-01 10:02:06 +00:00
// "remoteRoot": "D:/Project/Test/Test_Web/GuessWhoIAmS",
"remoteRoot": "E:/Project/Test/Test_NodeJS/GuessWhoIAmS",
2023-08-31 11:28:35 +00:00
// "remoteRoot": "/volume1/homes/JianMiau/www/line-bot-ts",
"skipFiles": [
"<node_internals>/**"
]
}
]
}