ts-checker-rspack-plugin
Version:
Runs typescript type checker and linter on separate process.
13 lines (12 loc) • 345 B
JavaScript
Object.defineProperty(exports, "__esModule", { value: true });
exports.RpcExitError = void 0;
class RpcExitError extends Error {
constructor(message, code, signal) {
super(message);
this.code = code;
this.signal = signal;
this.name = 'RpcExitError';
}
}
exports.RpcExitError = RpcExitError;
;