mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 21:14:28 -08:00
9 lines
267 B
JavaScript
9 lines
267 B
JavaScript
|
|
// This file is a shim which defers loading the real module until the compile cache is enabled.
|
||
|
|
try {
|
||
|
|
const { enableCompileCache } = require("node:module");
|
||
|
|
if (enableCompileCache) {
|
||
|
|
enableCompileCache();
|
||
|
|
}
|
||
|
|
} catch {}
|
||
|
|
module.exports = require("./_tsc.js");
|