tsconfig.json 635 B

123456789101112131415161718192021222324252627
  1. {
  2. "compilerOptions": {
  3. // Enable latest features
  4. "lib": ["ESNext", "DOM"],
  5. "target": "ESNext",
  6. "module": "ESNext",
  7. "moduleDetection": "force",
  8. "jsx": "react-jsx",
  9. "allowJs": true,
  10. // Bundler mode
  11. "moduleResolution": "bundler",
  12. "allowImportingTsExtensions": true,
  13. "verbatimModuleSyntax": true,
  14. "noEmit": true,
  15. // Best practices
  16. "strict": true,
  17. "skipLibCheck": true,
  18. "noFallthroughCasesInSwitch": true,
  19. // Some stricter flags (disabled by default)
  20. "noUnusedLocals": false,
  21. "noUnusedParameters": false,
  22. "noPropertyAccessFromIndexSignature": false
  23. }
  24. }