Files
leporello-js/typescript/tsserver.js

9 lines
272 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("./_tsserver.js");