Fix TypeScript errors after merging upstream origin/v4: - Add missing shareIcon color to theme config - Remove unused variables in custom components - Exclude broken _SocialShare.tsx from tsc and prettier - Run prettier on all files Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
656 B
JSON
23 lines
656 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["esnext", "DOM", "DOM.Iterable"],
|
|
"experimentalDecorators": true,
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"incremental": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"esModuleInterop": true,
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "preact"
|
|
},
|
|
"include": ["**/*.ts", "**/*.tsx", "./package.json"],
|
|
"exclude": ["build/**/*.d.ts", "quartz/components/_SocialShare.tsx"]
|
|
}
|