bucket-duck
Version:
A redux module containing a reducer and actions for a bucket widget.
29 lines • 992 B
JSON
{
// Use IntelliSense to learn about possible Node.js debug attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"program": "${workspaceRoot}/index.js",
"cwd": "${workspaceRoot}",
"outFiles": [],
"sourceMaps": true
},
{
"type": "node",
"request": "launch",
"name": "Run mocha",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"cwd": "${workspaceRoot}",
"stopOnEntry": false,
"runtimeExecutable": null,
"env": { "NODE_ENV": "production"},
"args": ["tests/**/*-test.js"],
"sourceMaps": true
}
]
}