Skip to content

Commit d3fc401

Browse files
committed
Update shim to be less fancy
1 parent 7d0cd83 commit d3fc401

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

Herebyfile.mjs

+4-7
Original file line numberDiff line numberDiff line change
@@ -403,18 +403,15 @@ export const watchMin = task({
403403
});
404404

405405

406-
// TODO(jakebailey): how can we make this backwards compatible?
407-
// Does anyone actually load tsserverlibrary into the browser directly?
408-
// Do we have to create a <script>?
406+
407+
// This is technically not enough to make tsserverlibrary loadable in the
408+
// browser, but it's unlikely that anyone has actually been doing that.
409409
const lsslJs = `
410410
if (typeof module !== "undefined" && module.exports) {
411411
module.exports = require("./typescript.js");
412412
}
413-
else if (typeof importScripts !== "undefined") {
414-
importScripts("./typescript.js");
415-
}
416413
else {
417-
throw new Error("tsserverlibrary cannot loaded; use typescript.js instead");
414+
throw new Error("tsserverlibrary requires CommonJS; use typescript.js instead");
418415
}
419416
`;
420417

0 commit comments

Comments
 (0)