tsconfig.app.json 816 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "compilerOptions": {
  3. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  4. "target": "ES2022",
  5. "useDefineForClassFields": true,
  6. "lib": [
  7. "ES2022",
  8. "DOM",
  9. "DOM.Iterable"
  10. ],
  11. "module": "ESNext",
  12. "types": [
  13. "vite/client"
  14. ],
  15. "skipLibCheck": true,
  16. "baseUrl": ".",
  17. "paths": {
  18. "@/*": [
  19. "./src/*"
  20. ]
  21. },
  22. "moduleResolution": "bundler",
  23. "allowImportingTsExtensions": true,
  24. "verbatimModuleSyntax": true,
  25. "moduleDetection": "force",
  26. "noEmit": true,
  27. "jsx": "react-jsx",
  28. "strict": true,
  29. "noUnusedLocals": true,
  30. "noUnusedParameters": true,
  31. "erasableSyntaxOnly": true,
  32. "noFallthroughCasesInSwitch": true,
  33. "noUncheckedSideEffectImports": true
  34. },
  35. "include": [
  36. "src"
  37. ]
  38. }