mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 13:04:30 -08:00
9 lines
272 B
JavaScript
9 lines
272 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("./_tsserver.js");
|