From 6749ee8dd139aae833febbd5f8269bdf14a79ff2 Mon Sep 17 00:00:00 2001 From: Tony Date: Wed, 14 Aug 2024 21:22:07 +0800 Subject: [PATCH] Exclude .d.ts from tsc compilation --- src/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/tsconfig.json b/src/tsconfig.json index f2c0ed0..c255f5c 100644 --- a/src/tsconfig.json +++ b/src/tsconfig.json @@ -4,5 +4,6 @@ "outDir": "../lib", // "sourceMap": true, "declaration": true, - } + }, + "exclude": ["./**.d.ts"] } \ No newline at end of file