1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-08 23:28:18 -05:00
denoland-deno/cli/js/web
Kitson Kelly 82aabb657a
feat: add --no-check option (#6456)
This commit adds a "--no-check" option to following subcommands:
- "deno cache"
- "deno info"
- "deno run"
- "deno test"

The "--no-check" options allows to skip type checking step and instead 
directly transpiles TS sources to JS sources. 

This solution uses `ts.transpileModule()` API and is just an interim
solution before implementing it fully in Rust.
2020-07-08 11:26:39 +02:00
..
fetch clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
streams feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
abort_controller.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
abort_signal.ts Add support for AbortController/AbortSignal (#4757) 2020-04-15 10:10:49 -04:00
base64.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
blob.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
body.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
console.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
console_table.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
custom_event.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
decode_utf8.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
dom_exception.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
dom_file.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
dom_iterable.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
dom_types.d.ts fix(cli/web/fetch): Make Response constructor standard (#5787) 2020-05-25 12:55:16 -04:00
dom_util.ts dedup URLSearchParams, URL, Location, DOMStringList (#4719) 2020-04-11 17:19:36 -04:00
error_event.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
event.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
event_target.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
fetch.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
form_data.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
headers.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
performance.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
promise.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
README.md clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
request.ts feat: add --no-check option (#6456) 2020-07-08 11:26:39 +02:00
text_encoding.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
timers.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
url.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
url_search_params.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00
util.ts Move getHeaderValueParams & hasHeaderValueOf to util.ts (#5824) 2020-05-25 09:12:09 -04:00
workers.ts clean up code in cli/js (#6611) 2020-07-06 21:45:39 -04:00

Deno Web APIs

This directory facilities Web APIs that are available in Deno.

Please note, that some implementations might not be completely aligned with specification.

Some Web APIs are using ops under the hood, eg. console, performance.

Implemented Web APIs