microsoft/vscode-react-native

Public

mirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
dev/v-peq/add-network-inspector-server-tests

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/extension/exponent/exponentHelper.d.ts

24lines · 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
4declare interface AppJson {
5 name: string;
6 displayName?: string;
7 expo: ExpConfig;
8}
9
10declare interface ExpConfig {
11 name: string;
12 slug: string;
13 sdkVersion: string;
14 version?: string;
15 entryPoint?: string;
16 packagerOpts?: ExpConfigPackager;
17 android?: [];
18 ios?: [];
19 web?: [];
20}
21
22declare interface ExpMetroConfig {
23 sourceExts?: string[];
24}
25