distinct-value-counter
Version:
Count distinct values/cardinalities using HyperLogLog algrithm.
58 lines (57 loc) • 1.86 kB
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}"
},
{
"type": "node",
"request": "attach",
"name": "Attach to Process",
"port": 5858
},
{
"type": "node",
"request": "launch",
"name": "Launch Test",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"args": ["--no-timeouts", "--colors", "-g", "serialize and deserialize", "test.js"],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"env": {
"NODE_ENV": "testing"
}
},
{
"type": "node",
"request": "launch",
"name": "Launch Test of Loading file",
"program": "${workspaceRoot}/test/loadfile.js",
"args": ["--no-timeouts", "--colors"],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"env": {
"NODE_ENV": "testing"
}
},
{
"type": "node",
"request": "launch",
"name": "Launch Test of Saving file",
"program": "${workspaceRoot}/test/savefile.js",
"args": ["--no-timeouts", "--colors"],
"cwd": "${workspaceRoot}",
"runtimeExecutable": null,
"env": {
"NODE_ENV": "testing"
}
}
]
}