@nativescript/doctor
Version:
Library that helps identifying if the environment can be used for development of {N} apps.
27 lines (26 loc) • 1 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Constants = void 0;
var Constants = (function () {
function Constants() {
}
Constants.ANDROID_PLATFORM_NAME = "Android";
Constants.IOS_PLATFORM_NAME = "iOS";
Constants.SUPPORTED_PLATFORMS = [
Constants.ANDROID_PLATFORM_NAME,
Constants.IOS_PLATFORM_NAME,
];
Constants.SYSTEM_REQUIREMENTS_LINKS = "https://docs.nativescript.org/setup";
Constants.INFO_TYPE_NAME = "info";
Constants.WARNING_TYPE_NAME = "warning";
Constants.PACKAGE_JSON = "package.json";
Constants.NATIVESCRIPT_KEY = "nativescript";
Constants.ANDROID_OLD_RUNTIME = "tns-android";
Constants.ANDROID_SCOPED_RUNTIME = "@nativescript/android";
Constants.VERSION_PROPERTY_NAME = "version";
Constants.XCODE_MIN_REQUIRED_VERSION = 10;
Constants.JAVAC_EXECUTABLE_NAME = "javac";
Constants.JAVA_EXECUTABLE_NAME = "java";
return Constants;
}());
exports.Constants = Constants;