amis2/.vscode/launch.json

19 lines
465 B
JSON
Raw Permalink Normal View History

2019-07-03 19:48:01 +08:00
{
"version": "1.0.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Jest: current file",
//"env": { "NODE_ENV": "test" },
"program": "${workspaceFolder}/node_modules/.bin/jest",
"args": ["${fileBasenameNoExtension}"],
"console": "integratedTerminal",
"disableOptimisticBPs": true,
"windows": {
"program": "${workspaceFolder}/node_modules/jest/bin/jest"
2019-07-03 19:48:01 +08:00
}
}
]
}