tsconfig.json 593 B

123456789101112131415161718192021222324
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": ["DOM", "DOM.Iterable", "ESNext"],
  5. "allowJs": false,
  6. "skipLibCheck": false,
  7. "esModuleInterop": false,
  8. "allowSyntheticDefaultImports": true,
  9. "strict": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "module": "ESNext",
  12. "moduleResolution": "Node",
  13. "resolveJsonModule": true,
  14. "isolatedModules": true,
  15. "noEmit": true,
  16. "jsx": "react",
  17. "paths": {
  18. "@/*": ["./src/*"],
  19. "@/components/*": ["./src/components/*"]
  20. }
  21. },
  22. "include": ["./src"],
  23. "exclude": ["node_modules"]
  24. }