summaryrefslogtreecommitdiff
path: root/cli/tsc.rs
diff options
context:
space:
mode:
authorNayeem Rahman <nayeemrmn99@gmail.com>2020-10-23 11:38:35 +0100
committerGitHub <noreply@github.com>2020-10-23 12:38:35 +0200
commita3024a6dc5c27317049a39ad8cb3e54368429dbf (patch)
tree118d2c24912410eaf6a712e0e786b0f9bd634333 /cli/tsc.rs
parentf56c7868ab3f862fc66c8605ed34c315040cb3a2 (diff)
BREAKING(cli/tsc): Enable isolatedModules by default (#8050)
Diffstat (limited to 'cli/tsc.rs')
-rw-r--r--cli/tsc.rs3
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,