From 334dc3fc4e7146eab3f2f337a5719fdaa1d6d28f Mon Sep 17 00:00:00 2001 From: Karsten Schmidt Date: Sun, 5 Apr 2020 00:12:08 +0100 Subject: [PATCH] build: enable "isolatedModules" TS config --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 778c4f52d2..f61be9c8b3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,8 @@ "preserveConstEnums": true, "moduleResolution": "node", "strict": true, - "strictNullChecks": true + "strictNullChecks": true, + "isolatedModules": true }, "exclude": ["./**/node_modules"] }