2024-03-08 17:59:45 +08:00
|
|
|
{
|
|
|
|
"version": "0.2.0",
|
|
|
|
"configurations": [
|
|
|
|
{
|
|
|
|
"type": "chrome",
|
|
|
|
"request": "launch",
|
2024-03-21 10:57:53 +08:00
|
|
|
"name": "Vue Debugger",
|
2024-03-08 17:59:45 +08:00
|
|
|
"url": "http://localhost:9527",
|
|
|
|
"webRoot": "${workspaceFolder}"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
2024-03-21 10:57:53 +08:00
|
|
|
"name": "TS Debugger",
|
|
|
|
"runtimeExecutable": "${workspaceRoot}/node_modules/.bin/tsx",
|
|
|
|
"skipFiles": ["<node_internals>/**", "${workspaceFolder}/node_modules/**"],
|
|
|
|
"program": "${file}"
|
2024-03-08 17:59:45 +08:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|