microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
2ec44b6d62529aa08a88dc1dbe190833e1838036

Branches

Tags

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

Clone

HTTPS

Download ZIP

.vscode/launch.json

49lines · modecode

1{
2 "version": "0.2.0",
3 "configurations": [
4 {
5 "name": "Launch Extension",
6 "type": "extensionHost",
7 "request": "launch",
8 "runtimeExecutable": "${execPath}",
9 "args": [
10 "--extensionDevelopmentPath=${workspaceRoot}"
11 ],
12 "sourceMaps": true,
13 "outDir": "${workspaceRoot}/out",
14 "preLaunchTask": "build"
15 },
16 {
17 "name": "mock-debug server",
18 "type": "node",
19 "request": "launch",
20 "runtimeArgs": ["--harmony"],
21 "program": "./src/mockDebug.ts",
22 "stopOnEntry": false,
23 "args": [ "--server=4711" ],
24 "sourceMaps": true,
25 "outDir": "./out"
26 },
27 {
28 "name": "mock test",
29 "type": "mock",
30 "request": "launch",
31 "program": "README.md",
32 "stopOnEntry": true
33 },
34 {
35 "name": "Run Tests",
36 "type": "node",
37 "request": "launch",
38 "program": "node_modules/mocha/bin/_mocha",
39 "args": [
40 "./out/tests",
41 "--timeout", "999999",
42 "--colors"
43 ],
44 "sourceMaps": true,
45 "outDir": "./out/",
46 "preLaunchTask": "build"
47 }
48 ]
49}