From 03c3b3b50c3411edc9dcf1bb05d7cdb093bb233a Mon Sep 17 00:00:00 2001 From: Bruno Rocha Date: Sun, 15 Dec 2024 13:38:29 -0300 Subject: [PATCH] chore: improve tsconfig --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 34c34d38..c6739c2b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,11 +3,15 @@ "noEmit": true, "module": "ESNext", "target": "ESNext", - "moduleResolution": "node", + "moduleResolution": "Bundler", + "moduleDetection": "force", "strict": true, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "skipLibCheck": true, + "isolatedModules": true, + "verbatimModuleSyntax": true, + "lib": ["ES2022"], "paths": { "@clack/core": ["./packages/core/src"] }