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"] }