Files
leporello-js/typescript/typingsInstaller.js

9 lines
280 B
JavaScript
Raw Normal View History

// 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("./_typingsInstaller.js");