tsconfig.app.json 749 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "compilerOptions": {
  3. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  4. "target": "ES2020",
  5. "useDefineForClassFields": true,
  6. "lib": ["ES2020", "DOM", "DOM.Iterable"],
  7. "module": "ESNext",
  8. "skipLibCheck": true,
  9. /* Bundler mode */
  10. "moduleResolution": "Bundler",
  11. "allowImportingTsExtensions": true,
  12. "isolatedModules": true,
  13. "moduleDetection": "force",
  14. "noEmit": true,
  15. "jsx": "react-jsx",
  16. /* Alias */
  17. "baseUrl": ".",
  18. "paths": {
  19. "@/*": ["./src/*"]
  20. },
  21. /* Linting */
  22. "strict": true,
  23. "noUnusedLocals": true,
  24. "noUnusedParameters": true,
  25. "noFallthroughCasesInSwitch": true,
  26. "noUncheckedSideEffectImports": true
  27. },
  28. "include": ["src"]
  29. }