From 3e142bf422c8181071415175ec8dffeb2f82ed52 Mon Sep 17 00:00:00 2001 From: marocchino Date: Fri, 13 Mar 2026 18:45:19 +0900 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Update=20tsconfig?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tsconfig.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 7b370ac..9193218 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,6 +6,7 @@ "declarationMap": false, "esModuleInterop": true, "forceConsistentCasingInFileNames": true, + "isolatedModules": true, "lib": ["ES2022"], "module": "NodeNext", "moduleResolution": "NodeNext", @@ -13,13 +14,13 @@ "noImplicitAny": true, "noUnusedLocals": true, "noUnusedParameters": false, + "outDir": "./dist", "pretty": true, "resolveJsonModule": true, "strict": true, "strictNullChecks": true, - "target": "ES2022", - "outDir": "./lib", - "rootDir": "./src" + "target": "ES2022" }, - "exclude": ["node_modules", "**/*.test.ts", "vitest.config.ts", "rollup.config.ts", "rollup.config.js"] + "exclude": ["node_modules", "**/*.test.ts", "dist"], + "include": ["src"] }