Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
0c2fd6d
Bump version to 5.5.0-beta and LKG
typescript-bot Apr 24, 2024
ecf3789
5.5 deprecations are no-ops, not errors (#58313)
RyanCavanaugh Apr 25, 2024
593f200
Merge remote-tracking branch 'origin/main' into release-5.5
typescript-bot Apr 25, 2024
b574864
Update LKG
typescript-bot Apr 25, 2024
2f78af3
Merge remote-tracking branch 'origin/main' into release-5.5
typescript-bot Jun 3, 2024
1dcba72
Update LKG
typescript-bot Jun 3, 2024
4ee5d05
Bump version to 5.5.1-rc and LKG
typescript-bot Jun 3, 2024
35d2952
🤖 Pick PR #58750 (Preserve elided imports used in dec...) into releas…
Jun 3, 2024
93585d0
🤖 Pick PR #58755 (Check cancellation token in isolate...) into releas…
Jun 3, 2024
1065222
🤖 Pick PR #58742 (fix58438: do not delete comments/co...) into releas…
Jun 3, 2024
2c50458
🤖 Pick PR #58758 (Resolve keyof and index operations ...) into releas…
Jun 3, 2024
f7bf3b2
Update LKG
typescript-bot Jun 3, 2024
602b098
🤖 Pick PR #58831 (Disable #57896 (Respect package.jso...) into releas…
Jun 13, 2024
a20c69e
🤖 Pick PR #58514 (Fixed a regression with reporting u...) into releas…
Jun 14, 2024
2b0009c
🤖 Pick PR #58846 (Ensure the updates with crashes rev...) into releas…
Jun 14, 2024
39c9eeb
Pick #58857 to release-5.5 (#58858)
andrewbranch Jun 14, 2024
552b07e
🤖 Pick PR #58786 (Fixed declaration emit crash relate...) into releas…
Jun 15, 2024
17933ee
🤖 Pick PR #58810 (Fixed declaration emit issue relate...) into releas…
Jun 15, 2024
45b1e3c
🤖 Pick PR #58872 (Fix declaration emit crash) into release-5.5 (#58874)
Jun 17, 2024
02132e5
🤖 Pick PR #58895 (Fix global when typescript.js loade...) into releas…
Jun 18, 2024
5367ae1
Bump version to 5.5.2 and LKG
typescript-bot Jun 18, 2024
7b1620b
🤖 Pick PR #58811 (fix(58801): "Move to file" on globa...) into releas…
Jun 19, 2024
f3b21a2
🤖 Pick PR #58931 (Defer creation of barebonesLibSourc...) into releas…
Jun 19, 2024
ce2e60e
Update LKG
typescript-bot Jun 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion Herebyfile.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ function createBundler(entrypoint, outfile, taskOptions = {}) {
// Monaco bundles us as ESM by wrapping our code with something that defines module.exports
// but then does not use it, instead using the `ts` variable. Ensure that if we think we're CJS
// that we still set `ts` to the module.exports object.
options.footer = { js: `})(typeof module !== "undefined" && module.exports ? module : { exports: ts });\nif (typeof module !== "undefined" && module.exports) { ts = module.exports; }` };
options.footer = { js: `})({ get exports() { return ts; }, set exports(v) { ts = v; if (typeof module !== "undefined" && module.exports) { module.exports = v; } } })` };

// esbuild converts calls to "require" to "__require"; this function
// calls the real require if it exists, or throws if it does not (rather than
Expand Down
1 change: 1 addition & 0 deletions lib/.gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text eol=lf
90 changes: 90 additions & 0 deletions lib/cancellationToken.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading