tsconfig.json 432 B

12345678910111213141516171819
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "module": "ESNext",
  5. "moduleResolution": "bundler",
  6. "jsx": "react-jsx",
  7. "strict": false,
  8. "skipLibCheck": true,
  9. "noEmit": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "resolveJsonModule": true,
  13. "paths": {
  14. "src/*": ["./src/*"]
  15. }
  16. },
  17. "include": ["src/**/*.ts", "src/**/*.tsx"],
  18. "exclude": ["node_modules"]
  19. }