tsconfig.app.json 637 B

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