diff options
Diffstat (limited to 'cli/js/compiler_host.ts')
-rw-r--r-- | cli/js/compiler_host.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/compiler_host.ts b/cli/js/compiler_host.ts index 291f6fbc5..0f6aa4d08 100644 --- a/cli/js/compiler_host.ts +++ b/cli/js/compiler_host.ts @@ -34,7 +34,7 @@ export const ASSETS = "$asset$"; * runtime). */ export const defaultBundlerOptions: ts.CompilerOptions = { inlineSourceMap: false, - module: ts.ModuleKind.AMD, + module: ts.ModuleKind.System, outDir: undefined, outFile: `${OUT_DIR}/bundle.js`, // disabled until we have effective way to modify source maps |