From 521206a58968b877adf10395765712b68fbc8bca Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Thu, 31 Jul 2025 01:50:36 +0200 Subject: [PATCH] file updated --- tsconfig.json | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index ea67970..be90ca2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,14 +1,20 @@ { + "compilerOptions": { + "types": ["vitest"], + "emitDeclarationOnly": true, + "declaration": true, + "outDir": "dist" + }, "files": [], "references": [ + { + "path": "./tsconfig.app.json" + }, { "path": "./tsconfig.node.json" }, { - "path": "./tsconfig.app.json" + "path": "./tsconfig.types.json" } - ], - "compilerOptions": { - "types": ["vitest"] - } + ] }