File tree 1 file changed +4
-7
lines changed
1 file changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -403,18 +403,15 @@ export const watchMin = task({
403
403
} ) ;
404
404
405
405
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.
409
409
const lsslJs = `
410
410
if (typeof module !== "undefined" && module.exports) {
411
411
module.exports = require("./typescript.js");
412
412
}
413
- else if (typeof importScripts !== "undefined") {
414
- importScripts("./typescript.js");
415
- }
416
413
else {
417
- throw new Error("tsserverlibrary cannot loaded ; use typescript.js instead");
414
+ throw new Error("tsserverlibrary requires CommonJS ; use typescript.js instead");
418
415
}
419
416
` ;
420
417
You can’t perform that action at this time.
0 commit comments