2019-08-02 19:28:49 +03:00
|
|
|
{
|
|
|
|
// 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": []
|
2020-01-27 22:57:21 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Debug metro bundling task",
|
|
|
|
"type": "node",
|
|
|
|
"request": "launch",
|
|
|
|
"program": "${workspaceRoot}/scripts/debug-metro-pack.js",
|
2020-03-17 01:48:56 +03:00
|
|
|
"cwd": "${workspaceFolder}/packages/libraries/core",
|
2020-01-27 22:57:21 +03:00
|
|
|
"args": ["rnTester"],
|
|
|
|
"runtimeArgs": ["--nolazy"],
|
|
|
|
"env": {
|
|
|
|
"NODE_ENV": "development"
|
|
|
|
},
|
|
|
|
"console": "integratedTerminal",
|
|
|
|
"sourceMaps": true,
|
|
|
|
"outFiles": []
|
2020-02-19 01:53:46 +03:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "Debug Fabric Tester",
|
|
|
|
"type": "node",
|
|
|
|
"request": "attach",
|
|
|
|
"protocol": "inspector",
|
|
|
|
"port": 9229
|
2019-08-02 19:28:49 +03:00
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|