Age | Commit message (Collapse) | Author | |
---|---|---|---|
2023-08-01 | fix: deno diagnostic - clarify where to put triple-slash directive (#20009) | David Sherret | |
Some people might not know what "entrypoint" means or where to put the triple-slash directive. | |||
2023-07-31 | feat(bench): add BenchContext::start() and BenchContext::end() (#18734) | Nayeem Rahman | |
Closes #17589. ```ts Deno.bench("foo", async (t) => { const resource = setup(); // not included in measurement t.start(); measuredOperation(resource); t.end(); resource.close(); // not included in measurement }); ``` | |||
2023-07-27 | fix: do not include jsx without `@ts-check` in tsc roots (#19964) | David Sherret | |
Closes #19928 | |||
2023-07-13 | fix(tsc): more informative diagnostic when `Deno` does not exist (#19825) | David Sherret | |
Also improved the diagnostic when using something like `Deno.openKv` and it doesn't exist. | |||
2023-07-07 | tests: add more jsxImportSource regression tests (#15592) | Luca Casonato | |
This commit adds some regression tests for using `jsxImportSource` in the config file in combination with an import map. These underlying issues were fixed by #15561. Closes #13389 Closes #14723 --------- Co-authored-by: Aapo Alasuutari <aapo.alasuutari@gmail.com> Co-authored-by: Bartek Iwańczuk <biwanczuk@gmail.com> | |||
2023-05-14 | fix(dts): move BroadcastChannel type to lib.deno.unstable.d.ts (#19108) | Yoshiya Hinosawa | |
2023-03-11 | fix(check): regression where config "types" entries caused type checking ↵ | David Sherret | |
errors (#18124) Closes #18117 Closes #18121 (this is just over 10ms faster in a directory one up from the root folder) cc @nayeemrmn | |||
2023-03-05 | fix(check): include dts files in tsc roots (#18026) | Nayeem Rahman | |
2023-01-24 | feat: support node built-in module imports (#17264) | Bartek Iwańczuk | |
Co-authored-by: David Sherret <dsherret@gmail.com> | |||
2022-12-19 | fix(cli): allow for specifying `noErrorTruncation` compiler option (#17127) | Kamil Ogórek | |
Fixes https://github.com/denoland/deno/issues/16568 | |||
2022-12-15 | fix: re-add Response.json static method (#17061) | Leo Kettmeir | |
Same as #16040 | |||
2022-10-27 | fix(typescript): allow synthetic default imports when using ↵ | David Sherret | |
`ModuleKind.ESNext` (#16438) Closes #16437 | |||
2022-10-21 | feat(unstable/npm): initial type checking of npm specifiers (#16332) | David Sherret | |
2022-09-19 | refactor: move out test files from root testdata directory into sub ↵ | David Sherret | |
directories (#15949) | |||
2022-07-12 | perf: use emit from swc instead of tsc (#15118) | David Sherret | |