UNPKG

closest-file-data

Version:

Allow to find and retrieve some data (such as config file) related to a given path (with cache)

36 lines 980 B
{ // Use IntelliSense to learn about possible 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", "name": "test:unit", "request": "launch", "args": [ "--runInBand", "--no-coverage" ], "cwd": "${workspaceFolder}", "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", "program": "${workspaceFolder}/node_modules/jest/bin/jest" }, { "type": "node", "name": "test:dist", "request": "launch", "args": [ "-c", "jest.config.dist.js", "--runInBand", "--no-coverage" ], "cwd": "${workspaceFolder}", "console": "integratedTerminal", "internalConsoleOptions": "neverOpen", "program": "${workspaceFolder}/node_modules/jest/bin/jest" } ] }