1234567891011121314151617181920212223242526 |
- {
- "compilerOptions": {
- "allowJs": true,
- "checkJs": true,
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- "isolatedModules": true,
- "jsx": "react-jsx",
- "lib": ["dom", "dom.iterable", "esnext"],
- "module": "NodeNext",
- "moduleResolution": "NodeNext",
- "moduleDetection": "force",
- "noEmit": true,
- "noFallthroughCasesInSwitch": true,
- "noUncheckedIndexedAccess": true,
- "resolveJsonModule": true,
- "skipLibCheck": true,
- "strict": true,
- "target": "esnext",
- "verbatimModuleSyntax": false, // TODO: enable this when moving to ESM
- "paths": {
- "~/*": ["./app/*"],
- },
- },
- "exclude": ["build", "public/build", ".cache"],
- }
|