webpack/test/cases/compile/error-hide-stack/loader.js

9 lines
244 B
JavaScript

/** @type {import("../../../../").LoaderDefinition} */
module.exports = function () {
var err = new Error("Message");
err.stack = "Stack";
//@ts-expect-error hideStack is not a property on normal errors
err.hideStack = true;
throw err;
};