{ // 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": [ { "name": "Debug test", "type": "node", "request": "launch", "program": "${workspaceRoot}/node_modules/jest/bin/jest.js", "cwd": "${workspaceFolder}/packages/just-scripts", "args": ["-i", "--runInBand"], "runtimeArgs": ["--nolazy"], "env": { "NODE_ENV": "development" }, "console": "integratedTerminal", "sourceMaps": true, "outFiles": [] }, { "name": "Debug metro bundling task", "type": "node", "request": "launch", "program": "${workspaceRoot}/scripts/debug-metro-pack.js", "cwd": "${workspaceFolder}/experiments/react-native-uifabric", "args": ["rnTester"], "runtimeArgs": ["--nolazy"], "env": { "NODE_ENV": "development" }, "console": "integratedTerminal", "sourceMaps": true, "outFiles": [] } ] }