mirror of
https://github.com/log4js-node/log4js-node.git
synced 2025-12-08 19:26:01 +00:00
14 lines
364 B
JavaScript
14 lines
364 B
JavaScript
const sandbox = require("@log4js-node/sandboxed-module");
|
|
|
|
sandbox.configure({
|
|
sourceTransformers: {
|
|
nyc(source) {
|
|
if (this.filename.indexOf("node_modules") > -1) {
|
|
return source;
|
|
}
|
|
const nyc = new (require("nyc"))({});
|
|
return nyc.instrumenter().instrumentSync(source, this.filename, { registerMap: () => {} });
|
|
}
|
|
}
|
|
});
|