In #108, the defaults of CompilerOptions were changes so we would stop emitting with inline source maps by default. This works when providing an empty object for compilerOptions, but not when not providing compilerOptions. This is because we used to fallback to deno_ast's defaults for EmitOptions when compilerOptions was not provided.
This PR fixes it; not providing compilerOptions is now equivalent to providing an empty object.
In #108, the defaults of
CompilerOptions
were changes so we would stop emitting with inline source maps by default. This works when providing an empty object forcompilerOptions
, but not when not providingcompilerOptions
. This is because we used to fallback todeno_ast
's defaults forEmitOptions
whencompilerOptions
was not provided.This PR fixes it; not providing
compilerOptions
is now equivalent to providing an empty object.