tsconfig.app.json 655 B

1234567891011121314151617181920212223242526
  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. "allowArbitraryExtensions": true,
  9. "skipLibCheck": true,
  10. /* Bundler mode */
  11. "moduleResolution": "bundler",
  12. "allowImportingTsExtensions": true,
  13. "verbatimModuleSyntax": true,
  14. "moduleDetection": "force",
  15. "noEmit": true,
  16. "jsx": "react-jsx",
  17. /* Linting */
  18. "noUnusedLocals": true,
  19. "noUnusedParameters": true,
  20. "erasableSyntaxOnly": true,
  21. "noFallthroughCasesInSwitch": true
  22. },
  23. "include": ["src"]
  24. }