diff options
author | Kitson Kelly <me@kitsonkelly.com> | 2018-10-23 22:08:47 +1100 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-10-23 06:01:11 -0700 |
commit | dd230d520b5599c0e51cf30245a567f07b3cfb28 (patch) | |
tree | 44895680a35b6ff55ff42fc57cf9df03721e8cc7 /js/compiler.ts | |
parent | 8ef7da261149ed03f25bdb5ea2611f8ce84a4d78 (diff) |
Support CheckJS
Diffstat (limited to 'js/compiler.ts')
-rw-r--r-- | js/compiler.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/compiler.ts b/js/compiler.ts index c872afa14..bac328937 100644 --- a/js/compiler.ts +++ b/js/compiler.ts @@ -152,6 +152,7 @@ export class DenoCompiler // arguments private readonly _options: Readonly<ts.CompilerOptions> = { allowJs: true, + checkJs: true, module: ts.ModuleKind.AMD, outDir: "$deno$", // TODO https://github.com/denoland/deno/issues/23 |