From 36885037f51d0bc3922014fa2bfb9c843910db80 Mon Sep 17 00:00:00 2001 From: theofficialomega <30985701+BellezaEmporium@users.noreply.github.com> Date: Mon, 23 Jun 2025 12:42:25 +0200 Subject: [PATCH] fix typescript configuration --- tsconfig.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index cb7b116a..7946eb55 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,8 +8,11 @@ "declaration": true, "typeRoots": [ "./node_modules/@types", - "./src/types" + "./scripts/types" ], - "allowJs": true - } + "allowJs": true, + "outDir": "./" + }, + "include": ["src/**/*", "scripts/types/**/*"], + "exclude": ["node_modules", "dist"] } \ No newline at end of file