tsconfig.json 616 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "lib": [
  6. "dom",
  7. "dom.iterable",
  8. "esnext"
  9. ],
  10. "allowJs": true,
  11. "skipLibCheck": true,
  12. "moduleResolution": "bundler",
  13. "importHelpers": true,
  14. "noEmit": true,
  15. "jsx": "react-jsx",
  16. "esModuleInterop": true,
  17. "sourceMap": true,
  18. "baseUrl": "./src",
  19. "strict": true,
  20. "resolveJsonModule": true,
  21. "allowSyntheticDefaultImports": true,
  22. "paths": {
  23. "@/*": [
  24. "src/*"
  25. ]
  26. }
  27. },
  28. "include": [
  29. "./src/**/*.d.ts",
  30. "./src/**/*.ts",
  31. "./src/**/*.tsx"
  32. ]
  33. }