diff options
Diffstat (limited to 'cli/module_graph2.rs')
-rw-r--r-- | cli/module_graph2.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/cli/module_graph2.rs b/cli/module_graph2.rs index 678fe8da5..4895cc53a 100644 --- a/cli/module_graph2.rs +++ b/cli/module_graph2.rs @@ -698,9 +698,6 @@ impl Graph2 { options: CheckOptions, ) -> Result<(Stats, Diagnostics, Option<IgnoredCompilerOptions>), AnyError> { - // TODO(@kitsonk) set to `true` in followup PR - let unstable = options.lib == TypeLib::UnstableDenoWindow - || options.lib == TypeLib::UnstableDenoWorker; let mut config = TsConfig::new(json!({ "allowJs": true, // TODO(@kitsonk) is this really needed? @@ -708,7 +705,7 @@ impl Graph2 { // Enabled by default to align to transpile/swc defaults "experimentalDecorators": true, "incremental": true, - "isolatedModules": unstable, + "isolatedModules": true, "lib": options.lib, "module": "esnext", "strict": true, |