{ "compilerOptions": { "target": "ES2022", "module": "ESNext", "moduleResolution": "Bundler", "lib": ["ES2022", "DOM", "DOM.Iterable"], "jsx": "react-jsx", "strict": true, "noUnusedLocals": false, "noUnusedParameters": false, "noFallthroughCasesInSwitch": true, "esModuleInterop": true, "allowSyntheticDefaultImports": true, "forceConsistentCasingInFileNames": true, "resolveJsonModule": true, "isolatedModules": true, "skipLibCheck": true, "allowImportingTsExtensions": false, "noEmit": true, "types": ["node", "vite/client", "vite-plugin-pwa/client"], "baseUrl": ".", "paths": { "@/*": ["client/src/*"], "@server/*": ["server/*"], "@shared/*": ["shared/*"] } }, "include": ["client/src", "server", "shared", "vite.config.ts", "drizzle.config.ts"], "exclude": ["node_modules", "dist", "src_ref", "docs_ref"] }