benchmarkHelperOptions: [
    {
        alias: "v";
        description: "Run with verbose logging [do not use for the real benchmark as this affects the time measurements, but only to find errors]";
        name: "verbose";
        type: BooleanConstructor;
    },
    {
        alias: "h";
        description: "Print this usage guide";
        name: "help";
        type: BooleanConstructor;
    },
    {
        alias: "i";
        defaultOption: true;
        description: "Pass a single file as src to read from";
        multiple: false;
        name: "input";
        type: StringConstructor;
        typeLabel: "{underline file}";
    },
] = ...