From 806b0f07e7f62027baf2e5bae58003197fc3c6eb Mon Sep 17 00:00:00 2001 From: Infendro Date: Wed, 29 Apr 2026 18:26:11 +0200 Subject: [PATCH] Fix tsconfig --- tsconfig.json | 13 +++++-------- 1 file changed, 5 insertions(+), 8 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index d7d58ee..1ff6193 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,13 +1,10 @@ { "compilerOptions": { + "rootDir": "./src/", "target": "ESNext", "module": "ESNext", - "moduleResolution": "Bundler", - "strict": true, - "declaration": true, - "outDir": "./dist/" - }, - "include": [ - "./src/" - ] + "moduleResolution": "bundler", + "outDir": "./dist/", + "declaration": true + } }