private _throwIfOptionNotAbsolutePath(optionName: string): void {
        if (!isAbsolute(this._options[optionName])) {
            throw new TypeError(`"${optionName}" must be an absolute path`);
        }
    }