tsconfig.app.json 732 B

12345678910111213141516171819202122232425262728
  1. {
  2. "compilerOptions": {
  3. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  4. "target": "ES2022",
  5. "useDefineForClassFields": true,
  6. "lib": ["ES2022", "DOM", "DOM.Iterable"],
  7. "module": "ESNext",
  8. "types": ["vite/client"],
  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. "strict": true,
  19. "noUnusedLocals": true,
  20. "noUnusedParameters": true,
  21. "erasableSyntaxOnly": true,
  22. "noFallthroughCasesInSwitch": true,
  23. "noUncheckedSideEffectImports": true
  24. },
  25. "include": ["src"]
  26. }