33 lines
847 B
JavaScript
33 lines
847 B
JavaScript
"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
|