git.delta.rocks / unique-network / refs/commits / 297a2ab34b66

difftreelog

source

tests/.vscode/launch.json766 Bsourcehistory
1{2    // Use IntelliSense to learn about possible attributes.3    // Hover to view descriptions of existing attributes.4    // For more information, visit: https://go.microsoft.com/fwlink/?linkid=8303875    "version": "0.2.0",6    "configurations": [7        {8            "type": "node",9            "request": "launch",10            "name": "Mocha Current File",11            "program": "${workspaceFolder}/node_modules/mocha/bin/_mocha",12            "args": [13                "--timeout", "999999",14                "--colors",15                "--recursive",16                "--require", "ts-node/register",17                "./**/*.test.ts"18            ],19            "console": "integratedTerminal",20            "internalConsoleOptions": "neverOpen"21      }22    ]23}