mirror of
https://github.com/idootop/mi-gpt.git
synced 2025-04-07 17:02:47 +00:00
25 lines
650 B
JSON
25 lines
650 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Test",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"args": ["${workspaceFolder}/tests/index.ts"],
|
|
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/tsx",
|
|
"cwd": "${workspaceRoot}",
|
|
"envFile": "${workspaceFolder}/.env",
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
},
|
|
{
|
|
"name": "Runner",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"args": ["${workspaceFolder}/app.js"],
|
|
"cwd": "${workspaceRoot}",
|
|
"envFile": "${workspaceFolder}/.env",
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
}
|
|
]
|
|
}
|