tsconfig.app.json 841 B

12345678910111213141516171819202122232425262728293031323334
  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", "vitest/globals"],
  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. /* Path aliases */
  18. "baseUrl": ".",
  19. "paths": {
  20. "@/*": ["./src/*"]
  21. },
  22. /* Linting */
  23. "strict": true,
  24. "noUnusedLocals": true,
  25. "noUnusedParameters": true,
  26. "erasableSyntaxOnly": true,
  27. "noFallthroughCasesInSwitch": true,
  28. "noUncheckedSideEffectImports": true
  29. },
  30. "include": ["src"]
  31. }