mirror of
https://github.com/zoriya/v10.git
synced 2026-08-05 21:57:29 +00:00
- Override composite project settings in tsconfig.build.json files - Add "composite": false and "incremental": false to enable declaration emit - Fix VS Code TypeScript errors for imports from @vjs-10/* packages - Ensure proper .d.ts generation for all rollup-migrated packages Resolves TypeScript import resolution issues like: Module '"@vjs-10/react-icons"' has no exported member 'VolumeOffIcon' 🤖 Generated with [Claude Code](https://claude.ai/code) Co-authored-by: Claude <noreply@anthropic.com>
13 lines
286 B
JSON
13 lines
286 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationDir": "dist",
|
|
"emitDeclarationOnly": true,
|
|
"outDir": "dist",
|
|
"skipLibCheck": true,
|
|
"composite": false,
|
|
"incremental": false
|
|
},
|
|
"exclude": ["dist", "node_modules"]
|
|
} |