From b22d68304508fc67991e6d29b185282c1fbf67af Mon Sep 17 00:00:00 2001 From: Brendan Allan Date: Fri, 29 Sep 2023 14:44:22 +0800 Subject: [PATCH] fix tsconfig --- interface/tsconfig.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/interface/tsconfig.json b/interface/tsconfig.json index cf7752598b07..30a4e12ed3d7 100644 --- a/interface/tsconfig.json +++ b/interface/tsconfig.json @@ -4,9 +4,10 @@ "paths": { "~/*": ["./*"] }, - "types": ["vite-plugin-svgr/client", "vite/client", "node"] + "types": ["vite-plugin-svgr/client", "vite/client", "node"], + "declarationDir": "dist" }, "include": ["**/*"], - "exclude": ["build"], + "exclude": ["dist"], "references": [{ "path": "../packages/ui" }, { "path": "../packages/client" }] }