| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "include": [
- "**/*.ts",
- "**/*.tsx",
- "**/.server/**/*.ts",
- "**/.server/**/*.tsx",
- "**/.client/**/*.ts",
- "**/.client/**/*.tsx",
- ".react-router/types/**/*",
- ],
- "compilerOptions": {
- "lib": [
- "dom",
- "dom.iterable",
- "es2022"
- ],
- "target": "es2022",
- "types": [
- "@react-router/node",
- "vite/client",
- ],
- "rootDirs": [
- ".",
- "./.react-router/types"
- ],
- "allowJs": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strict": true,
- "forceConsistentCasingInFileNames": true,
- "noFallthroughCasesInSwitch": true,
- "module": "esnext",
- "moduleResolution": "bundler",
- "resolveJsonModule": true,
- "isolatedModules": true,
- "jsx": "react-jsx",
- "baseUrl": ".",
- "paths": {
- "#/*": [
- "./src/*"
- ]
- },
- // Vite takes care of building everything, not tsc.
- "noEmit": true
- }
- }
|