fluentui-react-native/.vscode/launch.json

39 строки
1.1 KiB
JSON
Исходник Обычный вид История

{
// 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",
"cwd": "${workspaceFolder}/experiments/react-native-uifabric",
"args": ["rnTester"],
"runtimeArgs": ["--nolazy"],
"env": {
"NODE_ENV": "development"
},
"console": "integratedTerminal",
"sourceMaps": true,
"outFiles": []
}
]
}