microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
.vscode/launch.json
83lines · modeblame
9cf5eef2leolee10 years ago | 1 | { |
b031edc7digeff10 years ago | 2 | "version": "0.2.0", |
| 3 | "configurations": [ | |
| 4 | { | |
| 5 | "name": "Launch Extension", | |
| 6 | "type": "extensionHost", | |
| 7 | "request": "launch", | |
| 8 | "runtimeExecutable": "${execPath}", | |
5b0c8906Ezio Li9 months ago | 9 | "args": [ |
| 10 | "--extensionDevelopmentPath=${workspaceRoot}" | |
| 11 | ], | |
b031edc7digeff10 years ago | 12 | "sourceMaps": true, |
5b0c8906Ezio Li9 months ago | 13 | "outFiles": [ |
| 14 | "${workspaceRoot}/src/**/*.js" | |
| 15 | ], | |
f2568005Ruslan Bikkinin7 years ago | 16 | "preLaunchTask": "gulp: build" |
514f9fd6digeff10 years ago | 17 | }, |
| 18 | { | |
7080f524RedMickey6 years ago | 19 | "name": "Quick Launch Extension", |
| 20 | "type": "extensionHost", | |
514f9fd6digeff10 years ago | 21 | "request": "launch", |
7080f524RedMickey6 years ago | 22 | "runtimeExecutable": "${execPath}", |
5b0c8906Ezio Li9 months ago | 23 | "args": [ |
| 24 | "--extensionDevelopmentPath=${workspaceRoot}" | |
| 25 | ], | |
514f9fd6digeff10 years ago | 26 | "sourceMaps": true, |
5b0c8906Ezio Li9 months ago | 27 | "outFiles": [ |
| 28 | "${workspaceRoot}/src/**/*.js" | |
| 29 | ] | |
514f9fd6digeff10 years ago | 30 | }, |
ee16550eGuillaume Jenkins10 years ago | 31 | { |
7080f524RedMickey6 years ago | 32 | "name": "Launch Extension tests", |
ee16550eGuillaume Jenkins10 years ago | 33 | "type": "extensionHost", |
| 34 | "request": "launch", | |
| 35 | "runtimeExecutable": "${execPath}", | |
| 36 | "args": [ | |
c0acb6e6Ezio Li1 years ago | 37 | "${workspaceFolder}/test/resources/sampleReactNativeProject", |
ee16550eGuillaume Jenkins10 years ago | 38 | "--extensionDevelopmentPath=${workspaceRoot}", |
678db279Artem Egorov8 years ago | 39 | "--extensionTestsPath=${workspaceRoot}/test" |
ee16550eGuillaume Jenkins10 years ago | 40 | ], |
4de1c0a4Guillaume Jenkins10 years ago | 41 | "sourceMaps": true, |
5b0c8906Ezio Li9 months ago | 42 | "outFiles": [ |
| 43 | "${workspaceRoot}/src/**/*.js" | |
| 44 | ], | |
f2568005Ruslan Bikkinin7 years ago | 45 | "preLaunchTask": "gulp: build" |
bc54bd5adigeff10 years ago | 46 | }, |
df6309c4Yuri Skorokhodov7 years ago | 47 | { |
| 48 | "name": "Launch Localization Tests", | |
| 49 | "type": "extensionHost", | |
| 50 | "request": "launch", | |
| 51 | "runtimeExecutable": "${execPath}", | |
| 52 | "args": [ | |
495c23d6Ezio Li3 years ago | 53 | "--locale=zh-cn", |
df6309c4Yuri Skorokhodov7 years ago | 54 | "--extensionDevelopmentPath=${workspaceRoot}", |
| 55 | "--extensionTestsPath=${workspaceRoot}/test/localization" | |
| 56 | ], | |
| 57 | "sourceMaps": true, | |
5b0c8906Ezio Li9 months ago | 58 | "outFiles": [ |
| 59 | "${workspaceRoot}/src/**/*.js" | |
| 60 | ], | |
f2568005Ruslan Bikkinin7 years ago | 61 | "preLaunchTask": "gulp: build" |
df6309c4Yuri Skorokhodov7 years ago | 62 | }, |
f2568005Ruslan Bikkinin7 years ago | 63 | { |
5b0c8906Ezio Li9 months ago | 64 | "name": "Launch Smoke Tests", |
f2568005Ruslan Bikkinin7 years ago | 65 | "type": "node", |
| 66 | "request": "launch", | |
4cfdeb8fEzio Li9 months ago | 67 | "program": "${workspaceFolder}/test/smoke/node_modules/mocha/bin/_mocha", |
| 68 | "cwd": "${workspaceFolder}/test/smoke", | |
5b0c8906Ezio Li9 months ago | 69 | "args": [ |
| 70 | "--config ./.mocharc.js ", | |
| 71 | "--reporter mocha-multi-reporters" | |
| 72 | ], | |
f2568005Ruslan Bikkinin7 years ago | 73 | "timeout": 240000, |
| 74 | "stopOnEntry": false, | |
5b0c8906Ezio Li9 months ago | 75 | "outFiles": [ |
| 76 | "${workspaceFolder}/test/smoke/out/**/*.js" | |
| 77 | ], | |
| 78 | "sourceMaps": true, | |
| 79 | "preLaunchTask": "npm: compile-smoke-tests" | |
4d14f563Yuri Skorokhodov5 years ago | 80 | } |
b8999098Dmitry Zinovyev9 years ago | 81 | ], |
1bdccb66RedMickey6 years ago | 82 | "compounds": [] |
5b0c8906Ezio Li9 months ago | 83 | } |