microsoft/vscode-react-native

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
960a6ec47eafad42cd52a36af455604d4650cfff

Branches

Tags

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

Clone

HTTPS

Download ZIP

src/common/error/versionError.ts

10lines · 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
4export const RN_VERSION_ERRORS = {
5 MISSING_PACKAGE_IN_NODE_MODULES: "errorMissingPackageInNodeModules",
6 MISSING_DEPENDENCY_IN_PROJECT_PACKAGE_FILE: "errorMissingDependencyInProjectPackageFile",
7 MISSING_DEPENDENCIES_FIELDS_IN_PROJECT_PACKAGE_FILE:
8 "errorMissingDependenciesFieldsInProjectPackageFile",
9 UNKNOWN_ERROR: "errorUnknown",
10};
11