Shared UI package for web, electron, and mobile. Uses subpath exports following the official shadcn monorepo template pattern. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
22 lines
461 B
JSON
22 lines
461 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"moduleResolution": "bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"sourceMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@multica/ui/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["src"]
|
|
}
|