diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2020-10-26 14:03:03 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-26 14:03:03 +0100 |
commit | 57cad539457dff7fc273bed5ecaf08bd3dc40d1b (patch) | |
tree | 1b0c01aeaaf2c0a1723712d6b9b5baf91bfeecff /cli/dts/lib.deno.unstable.d.ts | |
parent | aebbdd5cc2c75151be28c839878b0dee915147ef (diff) |
refactor(cli): rewrite Deno.transpileOnly() to use SWC (#8090)
Co-authored-by: Kitson Kelly <me@kitsonkelly.com>
Diffstat (limited to 'cli/dts/lib.deno.unstable.d.ts')
-rw-r--r-- | cli/dts/lib.deno.unstable.d.ts | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/dts/lib.deno.unstable.d.ts b/cli/dts/lib.deno.unstable.d.ts index 1c1869827..0bd4c7474 100644 --- a/cli/dts/lib.deno.unstable.d.ts +++ b/cli/dts/lib.deno.unstable.d.ts @@ -480,8 +480,7 @@ declare namespace Deno { * source map. * @param options An option object of options to send to the compiler. This is * a subset of ts.CompilerOptions which can be supported by Deno. - * Many of the options related to type checking and emitting - * type declaration files will have no impact on the output. + * If unsupported option is passed then the API will throw an error. */ export function transpileOnly( sources: Record<string, string>, |