diff options
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts index 53ca4c009..815a6dc25 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -23,3 +23,8 @@ export { truncateSync, truncate } from "./truncate"; export { FileInfo } from "./file_info"; export { connect, dial, listen, Listener, Conn } from "./net"; export const args: string[] = []; + +// Provide the compiler API in an obfuscated way +import * as compiler from "./compiler"; +// @internal +export const _compiler = compiler; |