tsconfig.json 668 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "allowJs": true,
  4. "checkJs": true,
  5. "esModuleInterop": true,
  6. "forceConsistentCasingInFileNames": true,
  7. "isolatedModules": true,
  8. "jsx": "react-jsx",
  9. "lib": ["dom", "dom.iterable", "esnext"],
  10. "module": "NodeNext",
  11. "moduleResolution": "NodeNext",
  12. "moduleDetection": "force",
  13. "noEmit": true,
  14. "noFallthroughCasesInSwitch": true,
  15. "noUncheckedIndexedAccess": true,
  16. "resolveJsonModule": true,
  17. "skipLibCheck": true,
  18. "strict": true,
  19. "target": "esnext",
  20. "verbatimModuleSyntax": false, // TODO: enable this when moving to ESM
  21. "paths": {
  22. "~/*": ["./app/*"],
  23. },
  24. },
  25. "exclude": ["build", "public/build", ".cache"],
  26. }