@teradataprebuilt/fastcall-linux-node-v59
Version:
fastcall - Very fast, asynchronous, dyncall based foreign function interface library for Node.js
91 lines • 2.66 kB
JSON
{
"version": "0.2.0",
"configurations": [
{
"name": "test",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"stopOnEntry": false,
"args": [
"--timeout=10000"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy",
"--expose-gc"
],
"env": {
"NODE_ENV": "development",
"DEBUG": "fastcall:*"
},
"console": "integratedTerminal",
"sourceMaps": false
},
{
"name": "test-es5",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"stopOnEntry": false,
"args": [
"--timeout=10000"
],
"cwd": "${workspaceRoot}",
"preLaunchTask": "babel",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy",
"--expose-gc"
],
"env": {
"NODE_ENV": "development",
"DEBUG": "fastcall:*"
},
"console": "integratedTerminal",
"sourceMaps": true,
"outDir": "${workspaceRoot}/es5"
},
{
"name": "benchmarks",
"type": "node",
"request": "launch",
"program": "${workspaceRoot}/benchmarks/run.js",
"stopOnEntry": false,
"args": [],
"cwd": "${workspaceRoot}",
"preLaunchTask": null,
"runtimeExecutable": null,
"runtimeArgs": [],
"env": {
"NODE_ENV": "production"
},
"console": "integratedTerminal",
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858,
"address": "localhost",
"restart": false,
"sourceMaps": false,
"outDir": null,
"localRoot": "${workspaceRoot}",
"remoteRoot": null
},
{
"name": "Attach to Process",
"type": "node",
"request": "attach",
"processId": "${command.PickProcess}",
"port": 5858,
"sourceMaps": false,
"outDir": null
}
]
}