OpenMAIC-React / tsconfig.app.json
muthuk1's picture
Fix: resolve all TypeScript errors β€” exclude server code from tsc, fix styled-jsx β†’ standard style tags, fix leftover router.push β†’ navigate(), add sharp.d.ts stub
ddfb1af verified
Invalid JSON: Expected double-quoted property name in JSONat line 11, column 5
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "ES2017",
"lib": ["ES2023", "DOM", "DOM.Iterable"],
"module": "esnext",
"types": ["vite/client"],
"skipLibCheck": true,
"allowJs": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
/* Path aliases */
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
/* Linting β€” relaxed for migration */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"exclude": [
"src/api-routes/**",
"src/lib/server/**"
]
}