From 5a0d67b3f69e27a1addc1560eec201a20b45da56 Mon Sep 17 00:00:00 2001 From: yhh <359807859@qq.com> Date: Wed, 3 Dec 2025 21:04:59 +0800 Subject: [PATCH] =?UTF-8?q?fix(material-system):=20=E4=BF=AE=E5=A4=8Dtscon?= =?UTF-8?q?fig=E9=85=8D=E7=BD=AE=E6=94=AF=E6=8C=81TypeScript=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE=E5=BC=95=E7=94=A8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/material-system/tsconfig.json | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/packages/material-system/tsconfig.json b/packages/material-system/tsconfig.json index 0e985e1a..619f8381 100644 --- a/packages/material-system/tsconfig.json +++ b/packages/material-system/tsconfig.json @@ -1,6 +1,12 @@ { - "extends": "./tsconfig.build.json", + "extends": "../../tsconfig.base.json", "compilerOptions": { - "composite": true - } + "composite": true, + "declaration": true, + "declarationMap": true, + "outDir": "./dist", + "rootDir": "./src" + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist", "**/*.test.ts"] }