22 lines
699 B
JSON
22 lines
699 B
JSON
|
|
{
|
||
|
|
// This config is for emitting declarations (.d.ts) only
|
||
|
|
// Actual .ts source files are transpiled via babel
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"composite": true,
|
||
|
|
"declaration": true,
|
||
|
|
"noEmit": false,
|
||
|
|
"emitDeclarationOnly": true,
|
||
|
|
"outDir": "build/esm",
|
||
|
|
"rootDir": "./src",
|
||
|
|
"tsBuildInfoFile": "build/tsconfig.build.tsbuildinfo"
|
||
|
|
},
|
||
|
|
"include": ["./types.d.ts", "src/**/*.ts*", "src/**/*.json"],
|
||
|
|
"exclude": ["src/**/*.spec.ts*", "src/**/*.test.ts*"],
|
||
|
|
"references": [
|
||
|
|
{ "path": "../mui-material/tsconfig.build.json" },
|
||
|
|
{ "path": "../mui-system/tsconfig.build.json" },
|
||
|
|
{ "path": "../mui-icons-material/tsconfig.build.json" }
|
||
|
|
]
|
||
|
|
}
|