1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-24 16:19:12 -05:00
denoland-deno/cli/tests/testdata/check
Nayeem Rahman 02865cb5a2
feat(bench): add BenchContext::start() and BenchContext::end() (#18734)
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-31 12:02:59 +02:00
..
all fix(check): regression where config "types" entries caused type checking errors (#18124) 2023-03-11 11:43:45 -05:00
cache_config_on_off
deno_not_found fix(tsc): more informative diagnostic when Deno does not exist (#19825) 2023-07-13 23:29:51 +00:00
deno_unstable_not_found feat(bench): add BenchContext::start() and BenchContext::end() (#18734) 2023-07-31 12:02:59 +02:00
dts fix(check): regression where config "types" entries caused type checking errors (#18124) 2023-03-11 11:43:45 -05:00
export_equals_declaration_file fix(typescript): allow synthetic default imports when using ModuleKind.ESNext (#16438) 2022-10-27 08:12:40 -04:00
jsx_not_checked fix: do not include jsx without @ts-check in tsc roots (#19964) 2023-07-27 14:09:02 -04:00
jsximportsource_importmap_config tests: add more jsxImportSource regression tests (#15592) 2023-07-07 01:22:22 +02:00
module_detection_force
no_error_truncation fix(cli): allow for specifying noErrorTruncation compiler option (#17127) 2022-12-19 20:29:44 -05:00
node_builtin_modules feat: support node built-in module imports (#17264) 2023-01-24 09:05:54 -05:00
npm_install_diagnostics feat(unstable/npm): initial type checking of npm specifiers (#16332) 2022-10-21 15:20:18 +00:00
types_dts fix(check): regression where config "types" entries caused type checking errors (#18124) 2023-03-11 11:43:45 -05:00
broadcast_channel.ts fix(dts): move BroadcastChannel type to lib.deno.unstable.d.ts (#19108) 2023-05-14 20:27:14 +09:00
broadcast_channel.ts.error.out fix(dts): move BroadcastChannel type to lib.deno.unstable.d.ts (#19108) 2023-05-14 20:27:14 +09:00
declaration_header_file_with_no_exports.ts
declaration_header_file_with_no_exports_js.d.ts
declaration_header_file_with_no_exports_js.js
module_detection_force.ts
response_json.ts fix: re-add Response.json static method (#17061) 2022-12-15 10:33:19 -05:00