microsoft/vscode-react-native
Publicmirrored from https://github.com/microsoft/vscode-react-nativeAvailable
src/debugger/launchArgs.ts
18lines · modeblame
fb2bae06Daniel10 years ago | 1 | // Copyright (c) Microsoft Corporation. All rights reserved. |
| 2 | // Licensed under the MIT license. See LICENSE file in the project root for details. | |
| 3 | | |
| 4 | /** | |
| 5 | * Defines the options needed to start debugging a project. | |
| 6 | */ | |
| 7 | export interface IRunOptions extends ILaunchArgs { | |
| 8 | projectRoot: string; | |
| 9 | } | |
| 10 | | |
| 11 | /** | |
| 12 | * Defines the supported launch arguments. | |
| 13 | * Add more arguments here as needed. | |
| 14 | */ | |
| 15 | interface ILaunchArgs { | |
| 16 | platform?: string; | |
| 17 | target?: string; | |
| 18 | } |