From b153d80e4a26179cbb8a0301044fcf6a2fb53e8d Mon Sep 17 00:00:00 2001 From: Nix Krystik Date: Sat, 13 Jun 2026 22:07:09 +0000 Subject: [PATCH] (build): tsconfig is now only used for types. --- tsconfig.json | 24 +++++++++--------------- 1 file changed, 9 insertions(+), 15 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ac68ef6..98deec1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,21 +1,15 @@ { "compilerOptions": { - "target": "ES2022", - "module": "esnext", - "moduleResolution": "bundler", - "forceConsistentCasingInFileNames": false, - "inlineSourceMap": true, - "outDir": "./dist", - "rootDir": "./src", - "noImplicitAny": false, - "noUnusedLocals": true, - "esModuleInterop": true, "strict": true, + "noUnusedLocals": true, + "noImplicitAny": false, + + "moduleResolution": "bundler", + "esModuleInterop": true, + + "lib": ["ES2021.String"], "skipLibCheck": true, - "lib": [ - "ES2021.String" - ] + "inlineSourceMap": true, + "forceConsistentCasingInFileNames": false }, - "include": ["src"], - "exclude": ["node_modules"] } \ No newline at end of file