zxing-typescript
Version:
TypeScript port of ZXing open-source, multi-format 1D/2D barcode image processing library
32 lines (30 loc) • 917 B
JSON
{
"version": "0.2.0",
"configurations": [
{
"name": "Unit tests",
"type": "node",
"request": "launch",
"preLaunchTask": "build.node",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"args": [
"--colors",
"--timeout", "999999",
"./build-node/test/**/*.js",
"-g", "QRCodeBlackBox7TestCase"
],
"protocol": "inspector",
"cwd": "${workspaceRoot}",
"stopOnEntry": false,
"runtimeExecutable": null,
"sourceMaps": true,
"outFiles": ["${workspaceRoot}/build-node/**/*.js"],
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "test"
}
}
]
}