microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
0.4.3

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/extension/launchArgs.ts

33lines · modecode

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 supported launch arguments.
6 * Add more arguments here as needed.
7 */
8export interface ILaunchArgs {
9 platform: string;
10 projectRoot: string;
11 target?: "simulator" | "device";
12 debugAdapterPort?: number;
13 logCatArguments?: any;
14 packagerPort?: any;
15 runArguments?: string[];
16}
17
18/**
19 * Defines the options needed to start debugging a project.
20 */
21
22export interface IAndroidRunOptions extends ILaunchArgs {
23 variant?: string;
24}
25
26export interface IIOSRunOptions extends ILaunchArgs {
27 scheme?: string;
28 iosRelativeProjectPath?: string; // TODO Remove deprecated
29}
30
31export interface IRunOptions extends IAndroidRunOptions, IIOSRunOptions {
32
33}
34