From 4ff030cafde17d68a8829386b8f697406015f805 Mon Sep 17 00:00:00 2001 From: Levi Date: Fri, 19 Dec 2025 01:12:52 +0530 Subject: [PATCH] build(tsconfig): enabled isolatedModules in compilerOptions --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 4968182..3113b01 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -74,7 +74,7 @@ // "declarationDir": "./", /* Specify the output directory for generated declaration files. */ /* Interop Constraints */ - // "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ + "isolatedModules": true, /* Ensure that each file can be safely transpiled without relying on other imports. */ // "verbatimModuleSyntax": true, /* Do not transform or elide any imports or exports not marked as type-only, ensuring they are written in the output file's format based on the 'module' setting. */ // "isolatedDeclarations": true, /* Require sufficient annotation on exports so other tools can trivially generate declaration files. */ // "allowSyntheticDefaultImports": true, /* Allow 'import x from y' when a module doesn't have a default export. */