bpms_site/.svn/pristine/36/363265a9570e2554f3c64a03b03abe33e6c545d4.svn-base
2025-11-02 16:38:49 +03:30

33 lines
847 B
Plaintext

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "validArgs", {
enumerable: true,
get: function() {
return validArgs;
}
});
const validArgs = {
// Types
"--help": Boolean,
"--port": Number,
"--hostname": String,
"--turbo": Boolean,
"--experimental-https": Boolean,
"--experimental-https-key": String,
"--experimental-https-cert": String,
"--experimental-https-ca": String,
"--experimental-test-proxy": Boolean,
"--experimental-upload-trace": String,
// To align current messages with native binary.
// Will need to adjust subcommand later.
"--show-all": Boolean,
"--root": String,
// Aliases
"-h": "--help",
"-p": "--port",
"-H": "--hostname"
};
//# sourceMappingURL=next-dev-args.js.map