tsconfig.app.json 784 B

1234567891011121314151617181920212223242526272829303132
  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. "skipLibCheck": true,
  9. "baseUrl": ".",
  10. "paths": {
  11. "@/*": [
  12. "./src/*"
  13. ]
  14. },
  15. /* Bundler mode */
  16. "moduleResolution": "bundler",
  17. "allowImportingTsExtensions": true,
  18. "verbatimModuleSyntax": true,
  19. "moduleDetection": "force",
  20. "noEmit": true,
  21. "jsx": "react-jsx",
  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. }