├── .CodeQL.yml ├── .ci ├── common-validation.yml ├── master-pipeline.yml ├── nightly.yml ├── pr-pipeline.yml ├── smoke-tests-common-validation.yml └── smoke │ ├── smoke-tests-common-validation.yml │ ├── smoke-tests-linux.yml │ ├── smoke-tests-mac.yml │ └── smoke-tests-windows.yml ├── .codecov.yml ├── .eslintrc.js ├── .github ├── ISSUE_TEMPLATE.md └── ISSUE_TEMPLATE │ ├── 1-bug-report.md │ └── 2-feature-request.md ├── .gitignore ├── .husky └── pre-commit ├── .npmignore ├── .vscode ├── launch.json ├── settings.json └── tasks.json ├── .vscodeignore ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── SECURITY.md ├── SampleApplication ├── .vscode │ └── launch.json ├── README.txt ├── index.android.js ├── index.ios.js └── package.json ├── ThirdPartyNotices.txt ├── cgmanifest.json ├── gulp_scripts ├── builder.js ├── cleaner.js ├── formatter.js ├── packager.js ├── release.js ├── smoke-build.js ├── tester.js ├── translator.js ├── watcher.js └── webpackBundle.js ├── gulpfile.js ├── i18n ├── chs │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── cht │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── csy │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── deu │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── esn │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── fra │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── ita │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── jpn │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── kor │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── plk │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── ptb │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json ├── rus │ ├── package.i18n.json │ └── src │ │ ├── common │ │ ├── commandExecutor.i18n.json │ │ ├── configurationProviderHelper.i18n.json │ │ ├── error │ │ │ └── errorStrings.i18n.json │ │ └── packager.i18n.json │ │ ├── debugger │ │ ├── appWorker.i18n.json │ │ ├── debugSessionBase.i18n.json │ │ ├── direct │ │ │ └── directDebugSession.i18n.json │ │ ├── nodeDebugWrapper.i18n.json │ │ ├── reactNativeDebugEntryPoint.i18n.json │ │ ├── rnDebugSession.i18n.json │ │ └── webDebugSession.i18n.json │ │ └── extension │ │ ├── android │ │ ├── adb.i18n.json │ │ ├── androidPlatform.i18n.json │ │ ├── androidTargetManager.i18n.json │ │ └── logCatMonitor.i18n.json │ │ ├── appLauncher.i18n.json │ │ ├── applePlatformDebugModeManager.i18n.json │ │ ├── commandPaletteHandler.i18n.json │ │ ├── commands │ │ ├── configEASBuild.i18n.json │ │ ├── debugScenario.i18n.json │ │ ├── elementInspector.i18n.json │ │ ├── installExpoGoApplication.i18n.json │ │ ├── launchExpoWeb.i18n.json │ │ ├── networkInspector.i18n.json │ │ ├── openEASProject.i18n.json │ │ ├── openRNUpgradeHelper.i18n.json │ │ ├── publishToExpHost.i18n.json │ │ ├── revertOpenModule.i18n.json │ │ ├── showDevMenu.i18n.json │ │ ├── startLogCatMonitor.i18n.json │ │ └── util │ │ │ └── index.i18n.json │ │ ├── debugConfigurationProvider.i18n.json │ │ ├── debuggingConfiguration │ │ ├── debugConfigTypesAndConstants.i18n.json │ │ ├── launchJsonCompletionProvider.i18n.json │ │ └── reactNativeDebugConfigProvider.i18n.json │ │ ├── exponent │ │ ├── exponentHelper.i18n.json │ │ └── exponentPlatform.i18n.json │ │ ├── extensionServer.i18n.json │ │ ├── generalMobilePlatform.i18n.json │ │ ├── generalPlatform.i18n.json │ │ ├── ios │ │ ├── iOSDebugModeManager.i18n.json │ │ ├── iOSPlatform.i18n.json │ │ ├── iOSTargetManager.i18n.json │ │ └── simulatorPlist.i18n.json │ │ ├── mobileTargetManager.i18n.json │ │ ├── networkInspector │ │ ├── certificateProvider.i18n.json │ │ └── networkInspectorServer.i18n.json │ │ ├── openFileAtLocation.i18n.json │ │ ├── packagerStatusIndicator.i18n.json │ │ ├── qrCodeContentProvider.i18n.json │ │ ├── rn-extension.i18n.json │ │ ├── services │ │ ├── experimentService │ │ │ └── experimentsStrings.i18n.json │ │ ├── surveyService │ │ │ └── surveyService.i18n.json │ │ ├── tipsNotificationsService │ │ │ └── tipsStorage.i18n.json │ │ └── validationService │ │ │ ├── checker.i18n.json │ │ │ └── checks │ │ │ ├── adb.i18n.json │ │ │ ├── cocoaPods.i18n.json │ │ │ ├── devmode.i18n.json │ │ │ ├── dotnet.i18n.json │ │ │ ├── emulator.i18n.json │ │ │ ├── env.i18n.json │ │ │ ├── expoCli.i18n.json │ │ │ ├── gradle.i18n.json │ │ │ ├── iosDeploy.i18n.json │ │ │ ├── java.i18n.json │ │ │ ├── longPath.i18n.json │ │ │ ├── macos.i18n.json │ │ │ ├── nodeJS.i18n.json │ │ │ ├── npm.i18n.json │ │ │ ├── visualStudio.i18n.json │ │ │ ├── watchman.i18n.json │ │ │ ├── windows.i18n.json │ │ │ ├── xcodebuild.i18n.json │ │ │ └── xcodecli.i18n.json │ │ └── windows │ │ └── wpfPlatform.i18n.json └── trk │ ├── package.i18n.json │ └── src │ ├── common │ ├── commandExecutor.i18n.json │ ├── configurationProviderHelper.i18n.json │ ├── error │ │ └── errorStrings.i18n.json │ └── packager.i18n.json │ ├── debugger │ ├── appWorker.i18n.json │ ├── debugSessionBase.i18n.json │ ├── direct │ │ └── directDebugSession.i18n.json │ ├── nodeDebugWrapper.i18n.json │ ├── reactNativeDebugEntryPoint.i18n.json │ ├── rnDebugSession.i18n.json │ └── webDebugSession.i18n.json │ └── extension │ ├── android │ ├── adb.i18n.json │ ├── androidPlatform.i18n.json │ ├── androidTargetManager.i18n.json │ └── logCatMonitor.i18n.json │ ├── appLauncher.i18n.json │ ├── applePlatformDebugModeManager.i18n.json │ ├── commandPaletteHandler.i18n.json │ ├── commands │ ├── configEASBuild.i18n.json │ ├── debugScenario.i18n.json │ ├── elementInspector.i18n.json │ ├── installExpoGoApplication.i18n.json │ ├── launchExpoWeb.i18n.json │ ├── networkInspector.i18n.json │ ├── openEASProject.i18n.json │ ├── openRNUpgradeHelper.i18n.json │ ├── publishToExpHost.i18n.json │ ├── revertOpenModule.i18n.json │ ├── showDevMenu.i18n.json │ ├── startLogCatMonitor.i18n.json │ └── util │ │ └── index.i18n.json │ ├── debugConfigurationProvider.i18n.json │ ├── debuggingConfiguration │ ├── debugConfigTypesAndConstants.i18n.json │ ├── launchJsonCompletionProvider.i18n.json │ └── reactNativeDebugConfigProvider.i18n.json │ ├── exponent │ ├── exponentHelper.i18n.json │ └── exponentPlatform.i18n.json │ ├── extensionServer.i18n.json │ ├── generalMobilePlatform.i18n.json │ ├── generalPlatform.i18n.json │ ├── ios │ ├── iOSDebugModeManager.i18n.json │ ├── iOSPlatform.i18n.json │ ├── iOSTargetManager.i18n.json │ └── simulatorPlist.i18n.json │ ├── mobileTargetManager.i18n.json │ ├── networkInspector │ ├── certificateProvider.i18n.json │ └── networkInspectorServer.i18n.json │ ├── openFileAtLocation.i18n.json │ ├── packagerStatusIndicator.i18n.json │ ├── qrCodeContentProvider.i18n.json │ ├── rn-extension.i18n.json │ ├── services │ ├── experimentService │ │ └── experimentsStrings.i18n.json │ ├── surveyService │ │ └── surveyService.i18n.json │ ├── tipsNotificationsService │ │ └── tipsStorage.i18n.json │ └── validationService │ │ ├── checker.i18n.json │ │ └── checks │ │ ├── adb.i18n.json │ │ ├── cocoaPods.i18n.json │ │ ├── devmode.i18n.json │ │ ├── dotnet.i18n.json │ │ ├── emulator.i18n.json │ │ ├── env.i18n.json │ │ ├── expoCli.i18n.json │ │ ├── gradle.i18n.json │ │ ├── iosDeploy.i18n.json │ │ ├── java.i18n.json │ │ ├── longPath.i18n.json │ │ ├── macos.i18n.json │ │ ├── nodeJS.i18n.json │ │ ├── npm.i18n.json │ │ ├── visualStudio.i18n.json │ │ ├── watchman.i18n.json │ │ ├── windows.i18n.json │ │ ├── xcodebuild.i18n.json │ │ └── xcodecli.i18n.json │ └── windows │ └── wpfPlatform.i18n.json ├── js-patched ├── open-main.js └── opn-main.js ├── package.json ├── package.nls.cs.json ├── package.nls.de.json ├── package.nls.es.json ├── package.nls.fr.json ├── package.nls.it.json ├── package.nls.ja.json ├── package.nls.json ├── package.nls.ko.json ├── package.nls.pl.json ├── package.nls.pt-br.json ├── package.nls.ru.json ├── package.nls.tr.json ├── package.nls.zh-cn.json ├── package.nls.zh-tw.json ├── prepareBuild.bat ├── release ├── AdditionalAttributions.txt ├── LICENSE.txt └── ThirdPartyNotices.txt ├── resources ├── images │ ├── add-debug-configuration.gif │ ├── command-palette-preview.png │ ├── command-palette.png │ ├── custom-host-and-port.png │ ├── custom-keybindings.png │ ├── debug-commands-button.png │ ├── debug-icon.png │ ├── debug-targets.png │ ├── dev-menu-setup-custom-host.png │ ├── dynamic-debugging-configuration.gif │ ├── element-inspector-usage.gif │ ├── element-inspector-with-ui.png │ ├── expo-qrcode.png │ ├── hermeslogo.svg │ ├── icon.png │ ├── intellisense-prompt.png │ ├── intellisense.png │ ├── launch-config.png │ ├── network-inspector.png │ ├── react-features.gif │ ├── rnm-set-up.png │ ├── rnw-set-up.png │ └── select-dev-menu.png └── walkthougths │ ├── debug-tutor.md │ ├── features-tutor.md │ ├── setup-env-common.md │ └── setup-env-expo.md ├── scripts └── atom ├── src ├── cdp-proxy │ ├── CDPMessageHandlers │ │ ├── CDPAPINames.ts │ │ ├── ICDPMessageHandler.ts │ │ ├── baseCDPMessageHandler.ts │ │ ├── hermesCDPMessageHandler.ts │ │ ├── iOSDirectCDPMessageHandler.ts │ │ └── rnCDPMessageHandler.ts │ ├── debuggerEndpointHelper.ts │ └── reactNativeCDPProxy.ts ├── common │ ├── commandExecutor.ts │ ├── configurationProviderHelper.ts │ ├── configurationReader.ts │ ├── contextVariablesNames.ts │ ├── customRequire.ts │ ├── downloadHelper.ts │ ├── editorColorThemesHelper.ts │ ├── entryPointHandler.ts │ ├── error │ │ ├── errorHelper.ts │ │ ├── errorStrings.ts │ │ ├── internalError.ts │ │ ├── internalErrorCode.ts │ │ └── versionError.ts │ ├── executionsLimiter.ts │ ├── extensionHelper.ts │ ├── hostPlatform.ts │ ├── installHelper.ts │ ├── launchJsonCompletionHelper.ts │ ├── node │ │ ├── childProcess.ts │ │ ├── crypto.ts │ │ ├── fileSystem.ts │ │ ├── node.ts │ │ ├── package.ts │ │ ├── promise.ts │ │ └── request.ts │ ├── nodeHelper.ts │ ├── opensslWrapperWithPromises.ts │ ├── outputVerifier.ts │ ├── packageLoader.ts │ ├── packager.ts │ ├── packagerStatus.ts │ ├── projectVersionHelper.ts │ ├── reactNativeProjectHelper.ts │ ├── targetPlatformHelper.ts │ ├── telemetry.ts │ ├── telemetryGenerators.ts │ ├── telemetryHelper.ts │ ├── telemetryReporters.ts │ └── utils.ts ├── debugger │ ├── appWorker.ts │ ├── debugSessionBase.ts │ ├── debugSessionWrapper.ts │ ├── direct │ │ ├── IWDPHelper.ts │ │ └── directDebugSession.ts │ ├── forkedAppWorker.ts │ ├── jsDebugConfigAdapter.ts │ ├── rnDebugSession.ts │ ├── scriptImporter.ts │ ├── sourceMap.ts │ ├── sourceMapsCombinator.ts │ └── webDebugSession.ts ├── extension │ ├── abstractDeviceTracker.ts │ ├── android │ │ ├── adb.ts │ │ ├── androidContainerUtility.ts │ │ ├── androidDeviceTracker.ts │ │ ├── androidPlatform.ts │ │ ├── androidTargetManager.ts │ │ ├── logCatMonitor.ts │ │ ├── logCatMonitorManager.ts │ │ └── packageNameResolver.ts │ ├── appLauncher.ts │ ├── applePlatformDebugModeManager.ts │ ├── commands │ │ ├── configEASBuild.ts │ │ ├── debugScenario.ts │ │ ├── elementInspector.ts │ │ ├── enableExpoHemes.ts │ │ ├── enableHermes.ts │ │ ├── expoDoctor.ts │ │ ├── index.ts │ │ ├── installExpoGoApplication.ts │ │ ├── killPort.ts │ │ ├── launchAndroidEmulator.ts │ │ ├── launchExpoWeb.ts │ │ ├── launchIosSimulator.ts │ │ ├── networkInspector.ts │ │ ├── networkView.ts │ │ ├── openEASProject.ts │ │ ├── openExpoUpgradeHelper.ts │ │ ├── openRNUpgradeHelper.ts │ │ ├── prebuild.ts │ │ ├── prebuildClean.ts │ │ ├── publishToExpHost.ts │ │ ├── reloadApp.ts │ │ ├── reopenQRCode.ts │ │ ├── restartPackager.ts │ │ ├── revertOpenModule.ts │ │ ├── rnDoctor.ts │ │ ├── runAndroid.ts │ │ ├── runEasBuild.ts │ │ ├── runExponent.ts │ │ ├── runIos.ts │ │ ├── runMacOs.ts │ │ ├── runWindows.ts │ │ ├── selectAndInsertDebugConfiguration.ts │ │ ├── setNewArch.ts │ │ ├── showDevMenu.ts │ │ ├── startLogCatMonitor.ts │ │ ├── startPackager.ts │ │ ├── stopLogCatMonitor.ts │ │ ├── stopPackager.ts │ │ ├── testDevEnvironment.ts │ │ └── util │ │ │ ├── command.ts │ │ │ ├── index.ts │ │ │ └── reactNativeCommand.ts │ ├── debuggingConfiguration │ │ ├── configurationProviders │ │ │ ├── attachConfigProvider.ts │ │ │ ├── baseConfigProvider.ts │ │ │ ├── configProviderFactory.ts │ │ │ ├── debugConfigProvider.ts │ │ │ └── runConfigProvider.ts │ │ ├── debugConfigTypesAndConstants.ts │ │ ├── debugScenarioNameGenerator.ts │ │ ├── launchJsonCompletionProvider.ts │ │ ├── multiStepInput.ts │ │ ├── reactNativeDebugConfigProvider.ts │ │ └── reactNativeDebugDynamicConfigProvider.ts │ ├── exponent │ │ ├── exponentHelper.d.ts │ │ ├── exponentHelper.ts │ │ ├── exponentPlatform.ts │ │ └── xdlInterface.ts │ ├── extensionConfigManager.ts │ ├── generalMobilePlatform.ts │ ├── generalPlatform.ts │ ├── ios │ │ ├── iOSContainerUtility.ts │ │ ├── iOSDebugModeManager.ts │ │ ├── iOSDeviceTracker.ts │ │ ├── iOSPlatform.ts │ │ ├── iOSTargetManager.ts │ │ ├── plistBuddy.ts │ │ ├── simctl.ts │ │ └── simulatorPlist.ts │ ├── launchArgs.ts │ ├── launchScenariosManager.ts │ ├── log │ │ ├── ConsoleLogger.ts │ │ ├── LogHelper.ts │ │ ├── NullLogger.ts │ │ └── OutputChannelLogger.ts │ ├── macos │ │ ├── defaultsHelper.ts │ │ ├── macOSDebugModeManager.ts │ │ └── macOSPlatform.ts │ ├── mobileTarget.ts │ ├── mobileTargetManager.ts │ ├── networkInspector │ │ ├── certificateProvider.ts │ │ ├── clientDevice.ts │ │ ├── clientUtils.ts │ │ ├── devices │ │ │ ├── androidClientDevice.ts │ │ │ ├── baseClientDevice.ts │ │ │ ├── deviceStorage.ts │ │ │ └── iOSClienDevice.ts │ │ ├── networkInspectorServer.ts │ │ ├── networkMessageData.ts │ │ ├── requestBodyFormatters │ │ │ ├── formUrlencodedFormatter.ts │ │ │ ├── graphQLFormatter.ts │ │ │ ├── imageFormatter.ts │ │ │ ├── jsonFormatter.ts │ │ │ ├── requestBodyFormatter.ts │ │ │ └── utils.ts │ │ └── views │ │ │ ├── inspectorConsoleView.ts │ │ │ ├── inspectorView.ts │ │ │ └── inspectorViewFactory.ts │ ├── openFileAtLocation.ts │ ├── packagerStatusIndicator.ts │ ├── platformResolver.ts │ ├── projectsStorage.ts │ ├── qrCodeContentProvider.ts │ ├── reactDirManager.ts │ ├── reactNativeSessionManager.ts │ ├── rn-extension.ts │ ├── rnProjectObserver.ts │ ├── services │ │ ├── experimentService │ │ │ ├── IExperiment.ts │ │ │ ├── experimentService.ts │ │ │ ├── experiments │ │ │ │ └── RNTPreviewPrompt.ts │ │ │ └── experimentsStrings.ts │ │ ├── remoteConfigHelper.ts │ │ ├── surveyService │ │ │ └── surveyService.ts │ │ ├── tipsNotificationsService │ │ │ ├── tipsNotificationService.ts │ │ │ └── tipsStorage.ts │ │ └── validationService │ │ │ ├── checker.ts │ │ │ ├── checks │ │ │ ├── adb.ts │ │ │ ├── cocoaPods.ts │ │ │ ├── devmode.ts │ │ │ ├── dotnet.ts │ │ │ ├── emulator.ts │ │ │ ├── env.ts │ │ │ ├── expoCli.ts │ │ │ ├── gradle.ts │ │ │ ├── index.ts │ │ │ ├── iosDeploy.ts │ │ │ ├── java.ts │ │ │ ├── longPath.ts │ │ │ ├── macos.ts │ │ │ ├── nodeJS.ts │ │ │ ├── npm.ts │ │ │ ├── types │ │ │ │ └── index.ts │ │ │ ├── visualStudio.ts │ │ │ ├── watchman.ts │ │ │ ├── windows.ts │ │ │ ├── xcodebuild.ts │ │ │ └── xcodecli.ts │ │ │ └── util.ts │ ├── settingsHelper.ts │ └── windows │ │ └── windowsPlatform.ts └── typings │ ├── debugger │ └── sourceMapsCombinator.d.ts │ ├── exponent │ ├── metroConfig.d.ts │ └── xdl.d.ts │ ├── module.d.ts │ ├── openssl-wrapper │ └── openssl-wrapper.d.ts │ ├── plist-with-patches │ └── plist-with-patches.d.ts │ ├── should │ └── should.d.ts │ ├── sinon │ └── sinon.d.ts │ ├── strip-json-comments │ └── strip-json-comments.d.ts │ ├── vscode-extension-telemetry │ └── vscode-extension-telemetry.d.ts │ └── winreg │ └── winreg.d.ts ├── static └── PortForwardingMacApp.app │ └── Contents │ ├── Frameworks │ ├── CocoaAsyncSocketMac.framework │ │ ├── CocoaAsyncSocketMac │ │ ├── Resources │ │ │ └── Info.plist │ │ └── Versions │ │ │ └── A │ │ │ ├── CocoaAsyncSocketMac │ │ │ └── Resources │ │ │ └── Info.plist │ ├── FBPortForwarding-Mac.framework │ │ ├── FBPortForwarding-Mac │ │ ├── Resources │ │ │ └── Info.plist │ │ └── Versions │ │ │ └── A │ │ │ ├── FBPortForwarding-Mac │ │ │ └── Resources │ │ │ └── Info.plist │ └── peertalkMac.framework │ │ ├── Resources │ │ └── Info.plist │ │ ├── Versions │ │ └── A │ │ │ ├── Resources │ │ │ └── Info.plist │ │ │ └── peertalkMac │ │ └── peertalkMac │ ├── Info.plist │ ├── MacOS │ └── PortForwardingMacApp │ └── PkgInfo ├── syntaxes └── rn-output.tmGrammar.json ├── test ├── cdp-proxy │ ├── cdpConstants.ts │ └── reactNativeCDPProxy.test.ts ├── common │ ├── error │ │ └── errorHelper.test.ts │ ├── log.test.ts │ ├── packageLoader.test.ts │ ├── projectVersionHelper.test.ts │ ├── reactNativeProjectHelper.test.ts │ ├── utils.test.ts │ └── utils.ts ├── debugger │ ├── appWorker.test.ts │ ├── assets │ │ ├── consoleLog │ │ │ └── debuggerWorker.ts │ │ ├── debuggerWorker.ts │ │ ├── hello.ts │ │ └── importScriptsTest.ts │ ├── jsDebugConfigAdapter.test.ts │ ├── setup.test.ts │ ├── sourceMap.test.ts │ └── sourceMapsCombinator.test.ts ├── extension │ ├── android │ │ └── androidPlatform.test.ts │ ├── appLauncher.test.ts │ ├── checkEnvironment.test.ts │ ├── commandExecutor.test.ts │ ├── commands │ │ └── commands.test.ts │ ├── elementInspector.test.ts │ ├── experimentService │ │ └── experimentService.test.ts │ ├── exponent │ │ ├── expoWeb.test.ts │ │ └── exponentHelper.test.ts │ ├── generalPlatform.test.ts │ ├── ios │ │ ├── iOSPlatform.test.ts │ │ ├── plistBuddy.test.ts │ │ └── simulatorPlist.test.ts │ ├── launchScenarioManager.test.ts │ ├── macos │ │ └── macOSDebugModeManager.test.ts │ ├── mobileTargetManager.test.ts │ ├── networkInspector │ │ ├── inspectorConsoleView.test.ts │ │ └── requestBodyFormatter.test.ts │ ├── packager.test.ts │ ├── reactDirManager.test.ts │ ├── rn-extension.test.ts │ ├── settingsHelper.test.ts │ ├── tipsNotificationService │ │ └── tipsNotificationService.test.ts │ └── workspace.test.ts ├── index.ts ├── localization │ ├── index.ts │ ├── localization.test.ts │ └── runTest.ts ├── mochaReporterConfig.json ├── resources │ ├── auxiliaryFiles │ │ ├── buildSettings.txt │ │ └── templateProject │ │ │ ├── others │ │ │ └── android │ │ │ │ └── local.properties │ │ │ └── win │ │ │ └── android │ │ │ └── local.properties │ ├── newVersionReactNativeProject │ │ ├── index.android.js │ │ ├── index.ios.js │ │ ├── metro.config.cjs │ │ ├── metro.config.js │ │ └── package.json │ ├── processExecution │ │ ├── recorder.ts │ │ ├── recording.ts │ │ └── simulator.ts │ ├── processExecutionsRecordings │ │ └── react-native │ │ │ └── run-android │ │ │ ├── osx10.10-rn0.21.0 │ │ │ ├── failsDueToAdbCommandTimeout.json │ │ │ ├── failsDueToSkipDeviceDueToUnknownAPILevel.unused.json │ │ │ └── succeedsWithOneVSEmulator.json │ │ │ ├── win10-rn0.21.0 │ │ │ ├── failsDueToAndroidFolderMissing.json │ │ │ ├── failsDueToNoDevicesConnected.json │ │ │ ├── succeedsWithFiveVSEmulators.json │ │ │ ├── succeedsWithOneVSEmulator.json │ │ │ ├── succeedsWithTenVSEmulators.json │ │ │ ├── succeedsWithThreeVSEmulators.json │ │ │ └── succeedsWithTwoVSEmulators.json │ │ │ └── win10-rn0.22.2 │ │ │ ├── failsDueToAndroidFolderMissing.json │ │ │ ├── failsDueToNoValidDevicesConnected.unused.json │ │ │ ├── succeedsWithOneVSEmulator.json │ │ │ └── succeedsWithOneVSEmulatorAndTwoInvalid.unused.json │ ├── reactNative065.ts │ ├── recordingsHelper.ts │ ├── sampleExpoProject │ │ ├── app.json │ │ ├── launch.json │ │ └── package.json │ ├── sampleReactNativeProject │ │ ├── .gitignore │ │ ├── .vscode │ │ │ ├── emptyTelemetrySettings.json │ │ │ └── settings.json │ │ ├── index.android.js │ │ ├── index.ios.js │ │ ├── metro.config.cjs │ │ ├── metro.config.js │ │ └── package.json │ ├── simulators │ │ ├── apkSerializer.ts │ │ └── childProcess.ts │ └── workspaceSettingsSample │ │ ├── excludeSetting.code-workspace │ │ ├── noExcludeSetting.code-workspace │ │ └── settingWithComment.code-workspace ├── runTest.ts ├── smoke │ ├── .eslintrc.js │ ├── .mocharc.js │ ├── README.md │ ├── config.json │ ├── package-lock.json │ ├── package.json │ ├── resources │ │ ├── extension │ │ │ └── .gitkeep │ │ └── sampleReactNativeProject │ │ │ ├── index.android.js │ │ │ ├── index.ios.js │ │ │ ├── metro.config.cjs │ │ │ ├── metro.config.js │ │ │ └── package.json │ ├── suites │ │ ├── actionBar.test.ts │ │ ├── activation.test.ts │ │ ├── commands.test.ts │ │ ├── debugConfiguration.test.ts │ │ ├── fileExplorer.test.ts │ │ ├── helper │ │ │ ├── application.ts │ │ │ ├── commonHelper.ts │ │ │ ├── componentHelper.ts │ │ │ ├── constants.ts │ │ │ ├── elementHelper.ts │ │ │ ├── screenshot.ts │ │ │ ├── smokeTestLogger.ts │ │ │ ├── utilities.ts │ │ │ └── waitHelper.ts │ │ ├── main.ts │ │ ├── packager.test.ts │ │ ├── smoke.test.ts │ │ └── vsixbuild.test.ts │ └── tsconfig.json └── typings │ └── nyc │ └── nyc.d.ts ├── tools └── gulp-extras.js └── tsconfig.json /.CodeQL.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.CodeQL.yml -------------------------------------------------------------------------------- /.ci/common-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.ci/common-validation.yml -------------------------------------------------------------------------------- /.ci/master-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.ci/master-pipeline.yml -------------------------------------------------------------------------------- /.ci/nightly.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.ci/nightly.yml -------------------------------------------------------------------------------- /.ci/pr-pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.ci/pr-pipeline.yml -------------------------------------------------------------------------------- /.ci/smoke-tests-common-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.ci/smoke-tests-common-validation.yml -------------------------------------------------------------------------------- /.ci/smoke/smoke-tests-common-validation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.ci/smoke/smoke-tests-common-validation.yml -------------------------------------------------------------------------------- /.ci/smoke/smoke-tests-linux.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.ci/smoke/smoke-tests-linux.yml -------------------------------------------------------------------------------- /.ci/smoke/smoke-tests-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.ci/smoke/smoke-tests-mac.yml -------------------------------------------------------------------------------- /.ci/smoke/smoke-tests-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.ci/smoke/smoke-tests-windows.yml -------------------------------------------------------------------------------- /.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.codecov.yml -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/1-bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.github/ISSUE_TEMPLATE/1-bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/2-feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.github/ISSUE_TEMPLATE/2-feature-request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx gulp lint 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.npmignore -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /.vscode/tasks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.vscode/tasks.json -------------------------------------------------------------------------------- /.vscodeignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/.vscodeignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SampleApplication/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/SampleApplication/.vscode/launch.json -------------------------------------------------------------------------------- /SampleApplication/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/SampleApplication/README.txt -------------------------------------------------------------------------------- /SampleApplication/index.android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/SampleApplication/index.android.js -------------------------------------------------------------------------------- /SampleApplication/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/SampleApplication/index.ios.js -------------------------------------------------------------------------------- /SampleApplication/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/SampleApplication/package.json -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /cgmanifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/cgmanifest.json -------------------------------------------------------------------------------- /gulp_scripts/builder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulp_scripts/builder.js -------------------------------------------------------------------------------- /gulp_scripts/cleaner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulp_scripts/cleaner.js -------------------------------------------------------------------------------- /gulp_scripts/formatter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulp_scripts/formatter.js -------------------------------------------------------------------------------- /gulp_scripts/packager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulp_scripts/packager.js -------------------------------------------------------------------------------- /gulp_scripts/release.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulp_scripts/release.js -------------------------------------------------------------------------------- /gulp_scripts/smoke-build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulp_scripts/smoke-build.js -------------------------------------------------------------------------------- /gulp_scripts/tester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulp_scripts/tester.js -------------------------------------------------------------------------------- /gulp_scripts/translator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulp_scripts/translator.js -------------------------------------------------------------------------------- /gulp_scripts/watcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulp_scripts/watcher.js -------------------------------------------------------------------------------- /gulp_scripts/webpackBundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulp_scripts/webpackBundle.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/gulpfile.js -------------------------------------------------------------------------------- /i18n/chs/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/package.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/commands/launchExpoWeb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/commands/launchExpoWeb.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/commands/openEASProject.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/commands/openEASProject.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/exponent/exponentHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/exponent/exponentHelper.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/ios/iOSDebugModeManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/ios/iOSDebugModeManager.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/packagerStatusIndicator.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/packagerStatusIndicator.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/chs/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/chs/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/cht/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/package.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/commands/launchExpoWeb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/commands/launchExpoWeb.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/commands/openEASProject.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/commands/openEASProject.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/exponent/exponentHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/exponent/exponentHelper.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/ios/iOSDebugModeManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/ios/iOSDebugModeManager.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/packagerStatusIndicator.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/packagerStatusIndicator.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/cht/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/cht/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/csy/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/package.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/commands/launchExpoWeb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/commands/launchExpoWeb.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/commands/openEASProject.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/commands/openEASProject.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/exponent/exponentHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/exponent/exponentHelper.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/ios/iOSDebugModeManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/ios/iOSDebugModeManager.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/packagerStatusIndicator.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/packagerStatusIndicator.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/csy/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/csy/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/deu/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/package.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/commands/launchExpoWeb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/commands/launchExpoWeb.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/commands/openEASProject.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/commands/openEASProject.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/exponent/exponentHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/exponent/exponentHelper.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/ios/iOSDebugModeManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/ios/iOSDebugModeManager.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/packagerStatusIndicator.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/packagerStatusIndicator.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/deu/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/deu/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/esn/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/package.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/commands/launchExpoWeb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/commands/launchExpoWeb.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/commands/openEASProject.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/commands/openEASProject.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/exponent/exponentHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/exponent/exponentHelper.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/ios/iOSDebugModeManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/ios/iOSDebugModeManager.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/packagerStatusIndicator.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/packagerStatusIndicator.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/esn/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/esn/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/fra/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/package.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/commands/launchExpoWeb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/commands/launchExpoWeb.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/commands/openEASProject.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/commands/openEASProject.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/exponent/exponentHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/exponent/exponentHelper.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/ios/iOSDebugModeManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/ios/iOSDebugModeManager.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/packagerStatusIndicator.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/packagerStatusIndicator.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/fra/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/fra/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ita/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/package.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/commands/launchExpoWeb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/commands/launchExpoWeb.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/commands/openEASProject.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/commands/openEASProject.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/exponent/exponentHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/exponent/exponentHelper.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/ios/iOSDebugModeManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/ios/iOSDebugModeManager.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/packagerStatusIndicator.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/packagerStatusIndicator.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/ita/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ita/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/package.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/commands/launchExpoWeb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/commands/launchExpoWeb.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/commands/openEASProject.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/commands/openEASProject.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/exponent/exponentHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/exponent/exponentHelper.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/ios/iOSDebugModeManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/ios/iOSDebugModeManager.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/packagerStatusIndicator.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/packagerStatusIndicator.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/jpn/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/jpn/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/kor/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/package.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/commands/launchExpoWeb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/commands/launchExpoWeb.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/commands/openEASProject.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/commands/openEASProject.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/exponent/exponentHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/exponent/exponentHelper.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/ios/iOSDebugModeManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/ios/iOSDebugModeManager.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/packagerStatusIndicator.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/packagerStatusIndicator.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/kor/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/kor/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/plk/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/package.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/commands/launchExpoWeb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/commands/launchExpoWeb.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/commands/openEASProject.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/commands/openEASProject.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/exponent/exponentHelper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/exponent/exponentHelper.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/ios/iOSDebugModeManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/ios/iOSDebugModeManager.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/packagerStatusIndicator.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/packagerStatusIndicator.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/plk/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/plk/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/package.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/android/androidPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/android/androidPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/commands/configEASBuild.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/commands/configEASBuild.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/commands/debugScenario.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/commands/debugScenario.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/ptb/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/ptb/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/rus/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/package.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/rus/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/rus/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/trk/package.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/package.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/common/commandExecutor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/common/commandExecutor.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/common/error/errorStrings.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/common/error/errorStrings.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/common/packager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/common/packager.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/debugger/appWorker.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/debugger/appWorker.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/debugger/debugSessionBase.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/debugger/debugSessionBase.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/debugger/nodeDebugWrapper.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/debugger/nodeDebugWrapper.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/debugger/rnDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/debugger/rnDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/debugger/webDebugSession.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/debugger/webDebugSession.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/android/adb.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/android/adb.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/android/logCatMonitor.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/android/logCatMonitor.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/appLauncher.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/appLauncher.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/commandPaletteHandler.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/commandPaletteHandler.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/commands/showDevMenu.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/commands/showDevMenu.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/commands/util/index.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/commands/util/index.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/extensionServer.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/extensionServer.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/generalMobilePlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/generalMobilePlatform.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/generalPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/generalPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/ios/iOSPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/ios/iOSPlatform.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/ios/iOSTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/ios/iOSTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/ios/simulatorPlist.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/ios/simulatorPlist.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/mobileTargetManager.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/mobileTargetManager.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/openFileAtLocation.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/openFileAtLocation.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/qrCodeContentProvider.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/qrCodeContentProvider.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/rn-extension.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/rn-extension.i18n.json -------------------------------------------------------------------------------- /i18n/trk/src/extension/windows/wpfPlatform.i18n.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/i18n/trk/src/extension/windows/wpfPlatform.i18n.json -------------------------------------------------------------------------------- /js-patched/open-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/js-patched/open-main.js -------------------------------------------------------------------------------- /js-patched/opn-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/js-patched/opn-main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.json -------------------------------------------------------------------------------- /package.nls.cs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.cs.json -------------------------------------------------------------------------------- /package.nls.de.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.de.json -------------------------------------------------------------------------------- /package.nls.es.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.es.json -------------------------------------------------------------------------------- /package.nls.fr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.fr.json -------------------------------------------------------------------------------- /package.nls.it.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.it.json -------------------------------------------------------------------------------- /package.nls.ja.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.ja.json -------------------------------------------------------------------------------- /package.nls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.json -------------------------------------------------------------------------------- /package.nls.ko.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.ko.json -------------------------------------------------------------------------------- /package.nls.pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.pl.json -------------------------------------------------------------------------------- /package.nls.pt-br.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.pt-br.json -------------------------------------------------------------------------------- /package.nls.ru.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.ru.json -------------------------------------------------------------------------------- /package.nls.tr.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.tr.json -------------------------------------------------------------------------------- /package.nls.zh-cn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.zh-cn.json -------------------------------------------------------------------------------- /package.nls.zh-tw.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/package.nls.zh-tw.json -------------------------------------------------------------------------------- /prepareBuild.bat: -------------------------------------------------------------------------------- 1 | path %PATH%;node_modules\.bin 2 | -------------------------------------------------------------------------------- /release/AdditionalAttributions.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/release/AdditionalAttributions.txt -------------------------------------------------------------------------------- /release/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/release/LICENSE.txt -------------------------------------------------------------------------------- /release/ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/release/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /resources/images/add-debug-configuration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/add-debug-configuration.gif -------------------------------------------------------------------------------- /resources/images/command-palette-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/command-palette-preview.png -------------------------------------------------------------------------------- /resources/images/command-palette.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/command-palette.png -------------------------------------------------------------------------------- /resources/images/custom-host-and-port.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/custom-host-and-port.png -------------------------------------------------------------------------------- /resources/images/custom-keybindings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/custom-keybindings.png -------------------------------------------------------------------------------- /resources/images/debug-commands-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/debug-commands-button.png -------------------------------------------------------------------------------- /resources/images/debug-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/debug-icon.png -------------------------------------------------------------------------------- /resources/images/debug-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/debug-targets.png -------------------------------------------------------------------------------- /resources/images/dev-menu-setup-custom-host.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/dev-menu-setup-custom-host.png -------------------------------------------------------------------------------- /resources/images/dynamic-debugging-configuration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/dynamic-debugging-configuration.gif -------------------------------------------------------------------------------- /resources/images/element-inspector-usage.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/element-inspector-usage.gif -------------------------------------------------------------------------------- /resources/images/element-inspector-with-ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/element-inspector-with-ui.png -------------------------------------------------------------------------------- /resources/images/expo-qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/expo-qrcode.png -------------------------------------------------------------------------------- /resources/images/hermeslogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/hermeslogo.svg -------------------------------------------------------------------------------- /resources/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/icon.png -------------------------------------------------------------------------------- /resources/images/intellisense-prompt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/intellisense-prompt.png -------------------------------------------------------------------------------- /resources/images/intellisense.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/intellisense.png -------------------------------------------------------------------------------- /resources/images/launch-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/launch-config.png -------------------------------------------------------------------------------- /resources/images/network-inspector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/network-inspector.png -------------------------------------------------------------------------------- /resources/images/react-features.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/react-features.gif -------------------------------------------------------------------------------- /resources/images/rnm-set-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/rnm-set-up.png -------------------------------------------------------------------------------- /resources/images/rnw-set-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/rnw-set-up.png -------------------------------------------------------------------------------- /resources/images/select-dev-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/images/select-dev-menu.png -------------------------------------------------------------------------------- /resources/walkthougths/debug-tutor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/walkthougths/debug-tutor.md -------------------------------------------------------------------------------- /resources/walkthougths/features-tutor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/walkthougths/features-tutor.md -------------------------------------------------------------------------------- /resources/walkthougths/setup-env-common.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/walkthougths/setup-env-common.md -------------------------------------------------------------------------------- /resources/walkthougths/setup-env-expo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/resources/walkthougths/setup-env-expo.md -------------------------------------------------------------------------------- /scripts/atom: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/scripts/atom -------------------------------------------------------------------------------- /src/cdp-proxy/CDPMessageHandlers/CDPAPINames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/cdp-proxy/CDPMessageHandlers/CDPAPINames.ts -------------------------------------------------------------------------------- /src/cdp-proxy/CDPMessageHandlers/ICDPMessageHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/cdp-proxy/CDPMessageHandlers/ICDPMessageHandler.ts -------------------------------------------------------------------------------- /src/cdp-proxy/debuggerEndpointHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/cdp-proxy/debuggerEndpointHelper.ts -------------------------------------------------------------------------------- /src/cdp-proxy/reactNativeCDPProxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/cdp-proxy/reactNativeCDPProxy.ts -------------------------------------------------------------------------------- /src/common/commandExecutor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/commandExecutor.ts -------------------------------------------------------------------------------- /src/common/configurationProviderHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/configurationProviderHelper.ts -------------------------------------------------------------------------------- /src/common/configurationReader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/configurationReader.ts -------------------------------------------------------------------------------- /src/common/contextVariablesNames.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/contextVariablesNames.ts -------------------------------------------------------------------------------- /src/common/customRequire.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/customRequire.ts -------------------------------------------------------------------------------- /src/common/downloadHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/downloadHelper.ts -------------------------------------------------------------------------------- /src/common/editorColorThemesHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/editorColorThemesHelper.ts -------------------------------------------------------------------------------- /src/common/entryPointHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/entryPointHandler.ts -------------------------------------------------------------------------------- /src/common/error/errorHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/error/errorHelper.ts -------------------------------------------------------------------------------- /src/common/error/errorStrings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/error/errorStrings.ts -------------------------------------------------------------------------------- /src/common/error/internalError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/error/internalError.ts -------------------------------------------------------------------------------- /src/common/error/internalErrorCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/error/internalErrorCode.ts -------------------------------------------------------------------------------- /src/common/error/versionError.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/error/versionError.ts -------------------------------------------------------------------------------- /src/common/executionsLimiter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/executionsLimiter.ts -------------------------------------------------------------------------------- /src/common/extensionHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/extensionHelper.ts -------------------------------------------------------------------------------- /src/common/hostPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/hostPlatform.ts -------------------------------------------------------------------------------- /src/common/installHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/installHelper.ts -------------------------------------------------------------------------------- /src/common/launchJsonCompletionHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/launchJsonCompletionHelper.ts -------------------------------------------------------------------------------- /src/common/node/childProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/node/childProcess.ts -------------------------------------------------------------------------------- /src/common/node/crypto.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/node/crypto.ts -------------------------------------------------------------------------------- /src/common/node/fileSystem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/node/fileSystem.ts -------------------------------------------------------------------------------- /src/common/node/node.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/node/node.ts -------------------------------------------------------------------------------- /src/common/node/package.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/node/package.ts -------------------------------------------------------------------------------- /src/common/node/promise.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/node/promise.ts -------------------------------------------------------------------------------- /src/common/node/request.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/node/request.ts -------------------------------------------------------------------------------- /src/common/nodeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/nodeHelper.ts -------------------------------------------------------------------------------- /src/common/opensslWrapperWithPromises.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/opensslWrapperWithPromises.ts -------------------------------------------------------------------------------- /src/common/outputVerifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/outputVerifier.ts -------------------------------------------------------------------------------- /src/common/packageLoader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/packageLoader.ts -------------------------------------------------------------------------------- /src/common/packager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/packager.ts -------------------------------------------------------------------------------- /src/common/packagerStatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/packagerStatus.ts -------------------------------------------------------------------------------- /src/common/projectVersionHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/projectVersionHelper.ts -------------------------------------------------------------------------------- /src/common/reactNativeProjectHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/reactNativeProjectHelper.ts -------------------------------------------------------------------------------- /src/common/targetPlatformHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/targetPlatformHelper.ts -------------------------------------------------------------------------------- /src/common/telemetry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/telemetry.ts -------------------------------------------------------------------------------- /src/common/telemetryGenerators.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/telemetryGenerators.ts -------------------------------------------------------------------------------- /src/common/telemetryHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/telemetryHelper.ts -------------------------------------------------------------------------------- /src/common/telemetryReporters.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/telemetryReporters.ts -------------------------------------------------------------------------------- /src/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/common/utils.ts -------------------------------------------------------------------------------- /src/debugger/appWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/appWorker.ts -------------------------------------------------------------------------------- /src/debugger/debugSessionBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/debugSessionBase.ts -------------------------------------------------------------------------------- /src/debugger/debugSessionWrapper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/debugSessionWrapper.ts -------------------------------------------------------------------------------- /src/debugger/direct/IWDPHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/direct/IWDPHelper.ts -------------------------------------------------------------------------------- /src/debugger/direct/directDebugSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/direct/directDebugSession.ts -------------------------------------------------------------------------------- /src/debugger/forkedAppWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/forkedAppWorker.ts -------------------------------------------------------------------------------- /src/debugger/jsDebugConfigAdapter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/jsDebugConfigAdapter.ts -------------------------------------------------------------------------------- /src/debugger/rnDebugSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/rnDebugSession.ts -------------------------------------------------------------------------------- /src/debugger/scriptImporter.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/scriptImporter.ts -------------------------------------------------------------------------------- /src/debugger/sourceMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/sourceMap.ts -------------------------------------------------------------------------------- /src/debugger/sourceMapsCombinator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/sourceMapsCombinator.ts -------------------------------------------------------------------------------- /src/debugger/webDebugSession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/debugger/webDebugSession.ts -------------------------------------------------------------------------------- /src/extension/abstractDeviceTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/abstractDeviceTracker.ts -------------------------------------------------------------------------------- /src/extension/android/adb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/android/adb.ts -------------------------------------------------------------------------------- /src/extension/android/androidContainerUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/android/androidContainerUtility.ts -------------------------------------------------------------------------------- /src/extension/android/androidDeviceTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/android/androidDeviceTracker.ts -------------------------------------------------------------------------------- /src/extension/android/androidPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/android/androidPlatform.ts -------------------------------------------------------------------------------- /src/extension/android/androidTargetManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/android/androidTargetManager.ts -------------------------------------------------------------------------------- /src/extension/android/logCatMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/android/logCatMonitor.ts -------------------------------------------------------------------------------- /src/extension/android/logCatMonitorManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/android/logCatMonitorManager.ts -------------------------------------------------------------------------------- /src/extension/android/packageNameResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/android/packageNameResolver.ts -------------------------------------------------------------------------------- /src/extension/appLauncher.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/appLauncher.ts -------------------------------------------------------------------------------- /src/extension/applePlatformDebugModeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/applePlatformDebugModeManager.ts -------------------------------------------------------------------------------- /src/extension/commands/configEASBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/configEASBuild.ts -------------------------------------------------------------------------------- /src/extension/commands/debugScenario.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/debugScenario.ts -------------------------------------------------------------------------------- /src/extension/commands/elementInspector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/elementInspector.ts -------------------------------------------------------------------------------- /src/extension/commands/enableExpoHemes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/enableExpoHemes.ts -------------------------------------------------------------------------------- /src/extension/commands/enableHermes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/enableHermes.ts -------------------------------------------------------------------------------- /src/extension/commands/expoDoctor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/expoDoctor.ts -------------------------------------------------------------------------------- /src/extension/commands/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/index.ts -------------------------------------------------------------------------------- /src/extension/commands/installExpoGoApplication.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/installExpoGoApplication.ts -------------------------------------------------------------------------------- /src/extension/commands/killPort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/killPort.ts -------------------------------------------------------------------------------- /src/extension/commands/launchAndroidEmulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/launchAndroidEmulator.ts -------------------------------------------------------------------------------- /src/extension/commands/launchExpoWeb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/launchExpoWeb.ts -------------------------------------------------------------------------------- /src/extension/commands/launchIosSimulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/launchIosSimulator.ts -------------------------------------------------------------------------------- /src/extension/commands/networkInspector.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/networkInspector.ts -------------------------------------------------------------------------------- /src/extension/commands/networkView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/networkView.ts -------------------------------------------------------------------------------- /src/extension/commands/openEASProject.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/openEASProject.ts -------------------------------------------------------------------------------- /src/extension/commands/openExpoUpgradeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/openExpoUpgradeHelper.ts -------------------------------------------------------------------------------- /src/extension/commands/openRNUpgradeHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/openRNUpgradeHelper.ts -------------------------------------------------------------------------------- /src/extension/commands/prebuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/prebuild.ts -------------------------------------------------------------------------------- /src/extension/commands/prebuildClean.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/prebuildClean.ts -------------------------------------------------------------------------------- /src/extension/commands/publishToExpHost.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/publishToExpHost.ts -------------------------------------------------------------------------------- /src/extension/commands/reloadApp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/reloadApp.ts -------------------------------------------------------------------------------- /src/extension/commands/reopenQRCode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/reopenQRCode.ts -------------------------------------------------------------------------------- /src/extension/commands/restartPackager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/restartPackager.ts -------------------------------------------------------------------------------- /src/extension/commands/revertOpenModule.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/revertOpenModule.ts -------------------------------------------------------------------------------- /src/extension/commands/rnDoctor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/rnDoctor.ts -------------------------------------------------------------------------------- /src/extension/commands/runAndroid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/runAndroid.ts -------------------------------------------------------------------------------- /src/extension/commands/runEasBuild.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/runEasBuild.ts -------------------------------------------------------------------------------- /src/extension/commands/runExponent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/runExponent.ts -------------------------------------------------------------------------------- /src/extension/commands/runIos.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/runIos.ts -------------------------------------------------------------------------------- /src/extension/commands/runMacOs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/runMacOs.ts -------------------------------------------------------------------------------- /src/extension/commands/runWindows.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/runWindows.ts -------------------------------------------------------------------------------- /src/extension/commands/setNewArch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/setNewArch.ts -------------------------------------------------------------------------------- /src/extension/commands/showDevMenu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/showDevMenu.ts -------------------------------------------------------------------------------- /src/extension/commands/startLogCatMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/startLogCatMonitor.ts -------------------------------------------------------------------------------- /src/extension/commands/startPackager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/startPackager.ts -------------------------------------------------------------------------------- /src/extension/commands/stopLogCatMonitor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/stopLogCatMonitor.ts -------------------------------------------------------------------------------- /src/extension/commands/stopPackager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/stopPackager.ts -------------------------------------------------------------------------------- /src/extension/commands/testDevEnvironment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/testDevEnvironment.ts -------------------------------------------------------------------------------- /src/extension/commands/util/command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/util/command.ts -------------------------------------------------------------------------------- /src/extension/commands/util/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/util/index.ts -------------------------------------------------------------------------------- /src/extension/commands/util/reactNativeCommand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/commands/util/reactNativeCommand.ts -------------------------------------------------------------------------------- /src/extension/debuggingConfiguration/multiStepInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/debuggingConfiguration/multiStepInput.ts -------------------------------------------------------------------------------- /src/extension/exponent/exponentHelper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/exponent/exponentHelper.d.ts -------------------------------------------------------------------------------- /src/extension/exponent/exponentHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/exponent/exponentHelper.ts -------------------------------------------------------------------------------- /src/extension/exponent/exponentPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/exponent/exponentPlatform.ts -------------------------------------------------------------------------------- /src/extension/exponent/xdlInterface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/exponent/xdlInterface.ts -------------------------------------------------------------------------------- /src/extension/extensionConfigManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/extensionConfigManager.ts -------------------------------------------------------------------------------- /src/extension/generalMobilePlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/generalMobilePlatform.ts -------------------------------------------------------------------------------- /src/extension/generalPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/generalPlatform.ts -------------------------------------------------------------------------------- /src/extension/ios/iOSContainerUtility.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/ios/iOSContainerUtility.ts -------------------------------------------------------------------------------- /src/extension/ios/iOSDebugModeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/ios/iOSDebugModeManager.ts -------------------------------------------------------------------------------- /src/extension/ios/iOSDeviceTracker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/ios/iOSDeviceTracker.ts -------------------------------------------------------------------------------- /src/extension/ios/iOSPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/ios/iOSPlatform.ts -------------------------------------------------------------------------------- /src/extension/ios/iOSTargetManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/ios/iOSTargetManager.ts -------------------------------------------------------------------------------- /src/extension/ios/plistBuddy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/ios/plistBuddy.ts -------------------------------------------------------------------------------- /src/extension/ios/simctl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/ios/simctl.ts -------------------------------------------------------------------------------- /src/extension/ios/simulatorPlist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/ios/simulatorPlist.ts -------------------------------------------------------------------------------- /src/extension/launchArgs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/launchArgs.ts -------------------------------------------------------------------------------- /src/extension/launchScenariosManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/launchScenariosManager.ts -------------------------------------------------------------------------------- /src/extension/log/ConsoleLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/log/ConsoleLogger.ts -------------------------------------------------------------------------------- /src/extension/log/LogHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/log/LogHelper.ts -------------------------------------------------------------------------------- /src/extension/log/NullLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/log/NullLogger.ts -------------------------------------------------------------------------------- /src/extension/log/OutputChannelLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/log/OutputChannelLogger.ts -------------------------------------------------------------------------------- /src/extension/macos/defaultsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/macos/defaultsHelper.ts -------------------------------------------------------------------------------- /src/extension/macos/macOSDebugModeManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/macos/macOSDebugModeManager.ts -------------------------------------------------------------------------------- /src/extension/macos/macOSPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/macos/macOSPlatform.ts -------------------------------------------------------------------------------- /src/extension/mobileTarget.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/mobileTarget.ts -------------------------------------------------------------------------------- /src/extension/mobileTargetManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/mobileTargetManager.ts -------------------------------------------------------------------------------- /src/extension/networkInspector/certificateProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/networkInspector/certificateProvider.ts -------------------------------------------------------------------------------- /src/extension/networkInspector/clientDevice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/networkInspector/clientDevice.ts -------------------------------------------------------------------------------- /src/extension/networkInspector/clientUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/networkInspector/clientUtils.ts -------------------------------------------------------------------------------- /src/extension/networkInspector/networkMessageData.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/networkInspector/networkMessageData.ts -------------------------------------------------------------------------------- /src/extension/networkInspector/views/inspectorView.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/networkInspector/views/inspectorView.ts -------------------------------------------------------------------------------- /src/extension/openFileAtLocation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/openFileAtLocation.ts -------------------------------------------------------------------------------- /src/extension/packagerStatusIndicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/packagerStatusIndicator.ts -------------------------------------------------------------------------------- /src/extension/platformResolver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/platformResolver.ts -------------------------------------------------------------------------------- /src/extension/projectsStorage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/projectsStorage.ts -------------------------------------------------------------------------------- /src/extension/qrCodeContentProvider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/qrCodeContentProvider.ts -------------------------------------------------------------------------------- /src/extension/reactDirManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/reactDirManager.ts -------------------------------------------------------------------------------- /src/extension/reactNativeSessionManager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/reactNativeSessionManager.ts -------------------------------------------------------------------------------- /src/extension/rn-extension.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/rn-extension.ts -------------------------------------------------------------------------------- /src/extension/rnProjectObserver.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/rnProjectObserver.ts -------------------------------------------------------------------------------- /src/extension/services/remoteConfigHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/services/remoteConfigHelper.ts -------------------------------------------------------------------------------- /src/extension/services/surveyService/surveyService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/services/surveyService/surveyService.ts -------------------------------------------------------------------------------- /src/extension/services/validationService/checker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/services/validationService/checker.ts -------------------------------------------------------------------------------- /src/extension/services/validationService/checks/adb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/services/validationService/checks/adb.ts -------------------------------------------------------------------------------- /src/extension/services/validationService/checks/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/services/validationService/checks/env.ts -------------------------------------------------------------------------------- /src/extension/services/validationService/checks/npm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/services/validationService/checks/npm.ts -------------------------------------------------------------------------------- /src/extension/services/validationService/util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/services/validationService/util.ts -------------------------------------------------------------------------------- /src/extension/settingsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/settingsHelper.ts -------------------------------------------------------------------------------- /src/extension/windows/windowsPlatform.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/extension/windows/windowsPlatform.ts -------------------------------------------------------------------------------- /src/typings/debugger/sourceMapsCombinator.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/typings/debugger/sourceMapsCombinator.d.ts -------------------------------------------------------------------------------- /src/typings/exponent/metroConfig.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/typings/exponent/metroConfig.d.ts -------------------------------------------------------------------------------- /src/typings/exponent/xdl.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/typings/exponent/xdl.d.ts -------------------------------------------------------------------------------- /src/typings/module.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/typings/module.d.ts -------------------------------------------------------------------------------- /src/typings/openssl-wrapper/openssl-wrapper.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/typings/openssl-wrapper/openssl-wrapper.d.ts -------------------------------------------------------------------------------- /src/typings/plist-with-patches/plist-with-patches.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/typings/plist-with-patches/plist-with-patches.d.ts -------------------------------------------------------------------------------- /src/typings/should/should.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/typings/should/should.d.ts -------------------------------------------------------------------------------- /src/typings/sinon/sinon.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/typings/sinon/sinon.d.ts -------------------------------------------------------------------------------- /src/typings/winreg/winreg.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/src/typings/winreg/winreg.d.ts -------------------------------------------------------------------------------- /static/PortForwardingMacApp.app/Contents/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/static/PortForwardingMacApp.app/Contents/Info.plist -------------------------------------------------------------------------------- /static/PortForwardingMacApp.app/Contents/PkgInfo: -------------------------------------------------------------------------------- 1 | APPL???? -------------------------------------------------------------------------------- /syntaxes/rn-output.tmGrammar.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/syntaxes/rn-output.tmGrammar.json -------------------------------------------------------------------------------- /test/cdp-proxy/cdpConstants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/cdp-proxy/cdpConstants.ts -------------------------------------------------------------------------------- /test/cdp-proxy/reactNativeCDPProxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/cdp-proxy/reactNativeCDPProxy.test.ts -------------------------------------------------------------------------------- /test/common/error/errorHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/common/error/errorHelper.test.ts -------------------------------------------------------------------------------- /test/common/log.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/common/log.test.ts -------------------------------------------------------------------------------- /test/common/packageLoader.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/common/packageLoader.test.ts -------------------------------------------------------------------------------- /test/common/projectVersionHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/common/projectVersionHelper.test.ts -------------------------------------------------------------------------------- /test/common/reactNativeProjectHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/common/reactNativeProjectHelper.test.ts -------------------------------------------------------------------------------- /test/common/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/common/utils.test.ts -------------------------------------------------------------------------------- /test/common/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/common/utils.ts -------------------------------------------------------------------------------- /test/debugger/appWorker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/debugger/appWorker.test.ts -------------------------------------------------------------------------------- /test/debugger/assets/consoleLog/debuggerWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/debugger/assets/consoleLog/debuggerWorker.ts -------------------------------------------------------------------------------- /test/debugger/assets/debuggerWorker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/debugger/assets/debuggerWorker.ts -------------------------------------------------------------------------------- /test/debugger/assets/hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/debugger/assets/hello.ts -------------------------------------------------------------------------------- /test/debugger/assets/importScriptsTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/debugger/assets/importScriptsTest.ts -------------------------------------------------------------------------------- /test/debugger/jsDebugConfigAdapter.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/debugger/jsDebugConfigAdapter.test.ts -------------------------------------------------------------------------------- /test/debugger/setup.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/debugger/setup.test.ts -------------------------------------------------------------------------------- /test/debugger/sourceMap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/debugger/sourceMap.test.ts -------------------------------------------------------------------------------- /test/debugger/sourceMapsCombinator.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/debugger/sourceMapsCombinator.test.ts -------------------------------------------------------------------------------- /test/extension/android/androidPlatform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/android/androidPlatform.test.ts -------------------------------------------------------------------------------- /test/extension/appLauncher.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/appLauncher.test.ts -------------------------------------------------------------------------------- /test/extension/checkEnvironment.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/checkEnvironment.test.ts -------------------------------------------------------------------------------- /test/extension/commandExecutor.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/commandExecutor.test.ts -------------------------------------------------------------------------------- /test/extension/commands/commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/commands/commands.test.ts -------------------------------------------------------------------------------- /test/extension/elementInspector.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/elementInspector.test.ts -------------------------------------------------------------------------------- /test/extension/exponent/expoWeb.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/exponent/expoWeb.test.ts -------------------------------------------------------------------------------- /test/extension/exponent/exponentHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/exponent/exponentHelper.test.ts -------------------------------------------------------------------------------- /test/extension/generalPlatform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/generalPlatform.test.ts -------------------------------------------------------------------------------- /test/extension/ios/iOSPlatform.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/ios/iOSPlatform.test.ts -------------------------------------------------------------------------------- /test/extension/ios/plistBuddy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/ios/plistBuddy.test.ts -------------------------------------------------------------------------------- /test/extension/ios/simulatorPlist.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/ios/simulatorPlist.test.ts -------------------------------------------------------------------------------- /test/extension/launchScenarioManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/launchScenarioManager.test.ts -------------------------------------------------------------------------------- /test/extension/macos/macOSDebugModeManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/macos/macOSDebugModeManager.test.ts -------------------------------------------------------------------------------- /test/extension/mobileTargetManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/mobileTargetManager.test.ts -------------------------------------------------------------------------------- /test/extension/packager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/packager.test.ts -------------------------------------------------------------------------------- /test/extension/reactDirManager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/reactDirManager.test.ts -------------------------------------------------------------------------------- /test/extension/rn-extension.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/rn-extension.test.ts -------------------------------------------------------------------------------- /test/extension/settingsHelper.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/settingsHelper.test.ts -------------------------------------------------------------------------------- /test/extension/workspace.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/extension/workspace.test.ts -------------------------------------------------------------------------------- /test/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/index.ts -------------------------------------------------------------------------------- /test/localization/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/localization/index.ts -------------------------------------------------------------------------------- /test/localization/localization.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/localization/localization.test.ts -------------------------------------------------------------------------------- /test/localization/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/localization/runTest.ts -------------------------------------------------------------------------------- /test/mochaReporterConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/mochaReporterConfig.json -------------------------------------------------------------------------------- /test/resources/auxiliaryFiles/buildSettings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/auxiliaryFiles/buildSettings.txt -------------------------------------------------------------------------------- /test/resources/auxiliaryFiles/templateProject/others/android/local.properties: -------------------------------------------------------------------------------- 1 | sdk.dir=/Volumes/Macintosh HD/Users/foo/Library/Android/sdk/ -------------------------------------------------------------------------------- /test/resources/processExecution/recorder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/processExecution/recorder.ts -------------------------------------------------------------------------------- /test/resources/processExecution/recording.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/processExecution/recording.ts -------------------------------------------------------------------------------- /test/resources/processExecution/simulator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/processExecution/simulator.ts -------------------------------------------------------------------------------- /test/resources/reactNative065.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/reactNative065.ts -------------------------------------------------------------------------------- /test/resources/recordingsHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/recordingsHelper.ts -------------------------------------------------------------------------------- /test/resources/sampleExpoProject/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/sampleExpoProject/app.json -------------------------------------------------------------------------------- /test/resources/sampleExpoProject/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/sampleExpoProject/launch.json -------------------------------------------------------------------------------- /test/resources/sampleExpoProject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/sampleExpoProject/package.json -------------------------------------------------------------------------------- /test/resources/sampleReactNativeProject/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/sampleReactNativeProject/.gitignore -------------------------------------------------------------------------------- /test/resources/sampleReactNativeProject/.vscode/emptyTelemetrySettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "react-native.packager.port": 8088 3 | } 4 | -------------------------------------------------------------------------------- /test/resources/sampleReactNativeProject/index.ios.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/sampleReactNativeProject/index.ios.js -------------------------------------------------------------------------------- /test/resources/sampleReactNativeProject/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/sampleReactNativeProject/package.json -------------------------------------------------------------------------------- /test/resources/simulators/apkSerializer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/simulators/apkSerializer.ts -------------------------------------------------------------------------------- /test/resources/simulators/childProcess.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/resources/simulators/childProcess.ts -------------------------------------------------------------------------------- /test/runTest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/runTest.ts -------------------------------------------------------------------------------- /test/smoke/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/.eslintrc.js -------------------------------------------------------------------------------- /test/smoke/.mocharc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/.mocharc.js -------------------------------------------------------------------------------- /test/smoke/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/README.md -------------------------------------------------------------------------------- /test/smoke/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/config.json -------------------------------------------------------------------------------- /test/smoke/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/package-lock.json -------------------------------------------------------------------------------- /test/smoke/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/package.json -------------------------------------------------------------------------------- /test/smoke/resources/extension/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/smoke/suites/actionBar.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/actionBar.test.ts -------------------------------------------------------------------------------- /test/smoke/suites/activation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/activation.test.ts -------------------------------------------------------------------------------- /test/smoke/suites/commands.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/commands.test.ts -------------------------------------------------------------------------------- /test/smoke/suites/debugConfiguration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/debugConfiguration.test.ts -------------------------------------------------------------------------------- /test/smoke/suites/fileExplorer.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/fileExplorer.test.ts -------------------------------------------------------------------------------- /test/smoke/suites/helper/application.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/helper/application.ts -------------------------------------------------------------------------------- /test/smoke/suites/helper/commonHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/helper/commonHelper.ts -------------------------------------------------------------------------------- /test/smoke/suites/helper/componentHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/helper/componentHelper.ts -------------------------------------------------------------------------------- /test/smoke/suites/helper/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/helper/constants.ts -------------------------------------------------------------------------------- /test/smoke/suites/helper/elementHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/helper/elementHelper.ts -------------------------------------------------------------------------------- /test/smoke/suites/helper/screenshot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/helper/screenshot.ts -------------------------------------------------------------------------------- /test/smoke/suites/helper/smokeTestLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/helper/smokeTestLogger.ts -------------------------------------------------------------------------------- /test/smoke/suites/helper/utilities.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/helper/utilities.ts -------------------------------------------------------------------------------- /test/smoke/suites/helper/waitHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/helper/waitHelper.ts -------------------------------------------------------------------------------- /test/smoke/suites/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/main.ts -------------------------------------------------------------------------------- /test/smoke/suites/packager.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/packager.test.ts -------------------------------------------------------------------------------- /test/smoke/suites/smoke.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/smoke.test.ts -------------------------------------------------------------------------------- /test/smoke/suites/vsixbuild.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/suites/vsixbuild.test.ts -------------------------------------------------------------------------------- /test/smoke/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/smoke/tsconfig.json -------------------------------------------------------------------------------- /test/typings/nyc/nyc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/test/typings/nyc/nyc.d.ts -------------------------------------------------------------------------------- /tools/gulp-extras.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/tools/gulp-extras.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/vscode-react-native/HEAD/tsconfig.json --------------------------------------------------------------------------------