- Add tina/config.ts with full schema for all site sections - Convert i18n from TypeScript to nested JSON (content/translations/) - Update LanguageContext to import JSON with flattenObject utility - Update dev/build scripts to run tinacms build - Add sync-blog.mjs support for content/blog/*.md (TinaCMS posts) - Update CI/CD with Tina env vars, remove blog rsync exclusion - Add tina/__generated__/ to .gitignore Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
29 lines
763 B
JSON
29 lines
763 B
JSON
{
|
|
"compilerOptions": {
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ES2022", "DOM", "DOM.Iterable"],
|
|
"module": "ESNext",
|
|
"types": ["vite/client"],
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"erasableSyntaxOnly": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noUncheckedSideEffectImports": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"include": ["src"]
|
|
}
|