diff options
author | Nayeem Rahman <nayeemrmn99@gmail.com> | 2020-10-23 11:38:35 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 12:38:35 +0200 |
commit | a3024a6dc5c27317049a39ad8cb3e54368429dbf (patch) | |
tree | 118d2c24912410eaf6a712e0e786b0f9bd634333 /cli/tsc.rs | |
parent | f56c7868ab3f862fc66c8605ed34c315040cb3a2 (diff) |
BREAKING(cli/tsc): Enable isolatedModules by default (#8050)
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r-- | cli/tsc.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cli/tsc.rs b/cli/tsc.rs index 4cf253b7c..dfd733d48 100644 --- a/cli/tsc.rs +++ b/cli/tsc.rs @@ -716,8 +716,7 @@ pub async fn runtime_compile( "allowNonTsExtensions": true, "checkJs": false, "esModuleInterop": true, - // TODO(lucacasonato): enable this by default in 1.5.0 - "isolatedModules": unstable, + "isolatedModules": true, "jsx": "react", "module": "esnext", "sourceMap": true, |