UNPKG

step-to-json

Version:

A simple command line tool that extracts the system structure of a STEP (ISO 10303-44) file and outputs it as .json

60 lines (59 loc) 1.41 kB
{ "version": "0.2.0", "configurations": [ { "type": "node", "request": "launch", "name": "Debug Mocha Tests", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "args": [ "--require", "@babel/register", "--timeout", "10000", "--colors", "${workspaceFolder}/test/**/*.js" ], "sourceMaps": true, "console": "integratedTerminal", "internalConsoleOptions": "openOnSessionStart" }, { "type": "node", "request": "launch", "name": "Debug Current Test File", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "args": [ "--require", "@babel/register", "--timeout", "10000", "${file}" ], "sourceMaps": true, "console": "integratedTerminal" }, { "type": "node", "request": "launch", "name": "Debug Specific Test", "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha", "args": [ "--require", "@babel/register", "--grep", "${input:testName}", "${workspaceFolder}/test/**/*.js" ], "sourceMaps": true, "console": "integratedTerminal" } ], "inputs": [ { "id": "testName", "type": "promptString", "description": "Enter test name pattern to debug" } ] }