1
0

tsconfig.json 560 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "target": "es2023",
  4. "module": "esnext",
  5. "lib": ["ES2023", "DOM"],
  6. "types": ["vite/client"],
  7. "allowArbitraryExtensions": true,
  8. "skipLibCheck": true,
  9. /* Bundler mode */
  10. "moduleResolution": "bundler",
  11. "allowImportingTsExtensions": true,
  12. "verbatimModuleSyntax": true,
  13. "moduleDetection": "force",
  14. "noEmit": true,
  15. /* Linting */
  16. "noUnusedLocals": true,
  17. "noUnusedParameters": true,
  18. "erasableSyntaxOnly": true,
  19. "noFallthroughCasesInSwitch": true
  20. },
  21. "include": ["src"]
  22. }