tsconfig.app.json 852 B

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