microsoft/vscode-react-native
Publicmirrored fromhttps://github.com/microsoft/vscode-react-nativeAvailable
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 | |
| 4 | export 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 | |