Files
quartz/tsconfig.json
Struchkov Mark 98d6cfb404
Some checks are pending
Docker build & push image / build (push) Waiting to run
continuous-integration/drone/tag Build is passing
fix: adapt fork to upstream v4 merge
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>
2026-03-11 15:57:53 +03:00

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