mi-gpt/.vscode/launch.json
2024-01-24 23:14:28 +08:00

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"
}
]
}