From 4ca24351592f939bda64d28cb51cef2bba25fd47 Mon Sep 17 00:00:00 2001 From: mohamed yahia Date: Wed, 15 Nov 2023 21:01:20 +0200 Subject: [PATCH] Fixes #43 ( missing type declaration ) --- tsconfig.json | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 04b2fbc..98d0126 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,10 +2,11 @@ "compilerOptions": { "allowJs": true, "moduleResolution": "node", - "esModuleInterop": true + "esModuleInterop": true, + "declaration": true, + "composite": true }, - "files": [], - "include": [], + "include": ["src/**/*.ts"], "references": [ { "path": "./tsconfig.lib.json"