mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
27 lines
520 B
JSON
27 lines
520 B
JSON
{
|
|
"version": "0.2.0",
|
|
"configurations": [
|
|
{
|
|
"name": "Debug Jest Tests",
|
|
"type": "node",
|
|
"request": "launch",
|
|
"runtimeArgs": [
|
|
"--inspect-brk",
|
|
|
|
// Windows
|
|
//"${workspaceRoot}/node_modules/jest/bin/jest.js",
|
|
|
|
// Linux
|
|
"${workspaceRoot}/node_modules/.bin/jest",
|
|
|
|
"--runInBand",
|
|
"--watch",
|
|
"--coverage"
|
|
],
|
|
"console": "integratedTerminal",
|
|
"internalConsoleOptions": "neverOpen",
|
|
"port": 9229
|
|
}
|
|
]
|
|
}
|