From 33a08b2553ff94b4a3409200dd3e7dda140b0922 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 | 32 ++++++++++++++++++-------------- 1 file changed, 18 insertions(+), 14 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 34c34d38..c22f030c 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,16 +1,20 @@ { - "compilerOptions": { - "noEmit": true, - "module": "ESNext", - "target": "ESNext", - "moduleResolution": "node", - "strict": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "skipLibCheck": true, - "paths": { - "@clack/core": ["./packages/core/src"] - } - }, - "include": ["packages"] + "compilerOptions": { + "noEmit": true, + "module": "ESNext", + "target": "ESNext", + "moduleResolution": "Bundler", + "moduleDetection": "force", + "strict": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "skipLibCheck": true, + "isolatedModules": true, + "verbatimModuleSyntax": true, + "lib": ["ES2022"], + "paths": { + "@clack/core": ["./packages/core/src"] + } + }, + "include": ["packages"] }