From 51a52808cab47e0313ef68605d4f41cdaf8ff233 Mon Sep 17 00:00:00 2001 From: Christopher Willis-Ford <7019101+cwillisf@users.noreply.github.com> Date: Tue, 10 Dec 2024 13:40:38 -0800 Subject: [PATCH] build: tell TS to include only src,tests,types --- tsconfig.json | 5 +++++ continuous-toolbox.d.ts => types/continuous-toolbox.d.ts | 0 2 files changed, 5 insertions(+) rename continuous-toolbox.d.ts => types/continuous-toolbox.d.ts (100%) diff --git a/tsconfig.json b/tsconfig.json index 9035b59753..7c4e19b64d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,9 @@ { + "include": [ + "./src/", + "./tests/", + "./types/" + ], "compilerOptions": { "outDir": "./dist/", "noImplicitAny": true, diff --git a/continuous-toolbox.d.ts b/types/continuous-toolbox.d.ts similarity index 100% rename from continuous-toolbox.d.ts rename to types/continuous-toolbox.d.ts