{ "compilerOptions": { "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", "target": "es2023", "lib": ["ES2023", "DOM"], "module": "esnext", "types": ["vite/client"], "skipLibCheck": true, /* Bundler mode */ "moduleResolution": "bundler", "allowImportingTsExtensions": true, "verbatimModuleSyntax": true, "moduleDetection": "force", "noEmit": true, "jsx": "react-jsx", /* Linting */ "noUnusedLocals": true, "noUnusedParameters": true, "erasableSyntaxOnly": false, "noFallthroughCasesInSwitch": true, "paths": { "@/*": ["./src/*"], "@shared/*": ["../shared/*"] } }, "include": [ "src/**/*.ts", "src/**/*.tsx", "../shared/**/*.ts" ], "exclude": [ "../shared/**/*.test.ts" ] }