20 lines
397 B
JavaScript
20 lines
397 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,
|
|
// Aliases
|
|
"-h": "--help",
|
|
// Detailed diagnostics
|
|
"--verbose": Boolean
|
|
};
|
|
|
|
//# sourceMappingURL=next-info-args.js.map
|