microsoft/vscode-react-native

Public

mirrored from https://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.6.3

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

src/extension/appcenter/lib/codepush-node-sdk/.vscode/launch.json

49lines · modecode

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=830387
5 "version": "0.2.0",
6 "configurations": [
7 {
8 "name": "Current TS File",
9 "type": "node",
10 "request": "launch",
11 "args": [
12 "${relativeFile}"
13 ],
14 "runtimeArgs": [
15 "-r",
16 "ts-node/register"
17 ],
18 "cwd": "${workspaceRoot}",
19 "protocol": "inspector",
20 "internalConsoleOptions": "openOnSessionStart"
21 },
22 {
23 "name": "Debug Jest tests",
24 "type": "node",
25 "request": "launch",
26 "protocol": "inspector",
27 "program": "${workspaceRoot}/node_modules/jest-cli/bin/jest.js",
28 "stopOnEntry": false,
29 "args": [
30 "--runInBand",
31 "--no-cache",
32 "--silent",
33 "--config",
34 "${workspaceRoot}/test/config/jest.debug.config.js"
35 ],
36 "cwd": "${workspaceRoot}",
37 "preLaunchTask": "build-tests",
38 "runtimeExecutable": null,
39 "runtimeArgs": [
40 "--no-lazy"
41 ],
42 "env": {
43 "NODE_ENV": "test"
44 },
45 "console": "internalConsole",
46 "sourceMaps": true
47 }
48 ]
49}