From b8066657c492d15773f90dd32d29365067e1d8f6 Mon Sep 17 00:00:00 2001 From: Karin Hendrikse <30577427+khendrikse@users.noreply.github.com> Date: Mon, 30 Oct 2023 19:01:27 +0100 Subject: [PATCH] fix: add declaration true to compilerOptions to generate d.ts files (#576) --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index 5052044..9067400 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "compilerOptions": { "strict": true, "target": "ES2022", + "declaration": true, "rootDir": ".", "outDir": "build", "module": "Node16",