mirror of
https://github.com/idootop/mi-gpt.git
synced 2025-04-07 19:21:30 +00:00
20 lines
438 B
JSON
20 lines
438 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Test.ts",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"args": ["${workspaceFolder}/tests/index.ts"],
|
|
"runtimeArgs": [
|
|
"--no-warnings",
|
|
"--experimental-specifier-resolution=node",
|
|
"--loader",
|
|
"./tests/esm-loader.js"
|
|
],
|
|
"cwd": "${workspaceRoot}",
|
|
"internalConsoleOptions": "openOnSessionStart"
|
|
}
|
|
]
|
|
}
|