tsconfig.json 651 B

12345678910111213141516171819202122232425
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "ESNext",
  5. "lib": ["ES2020", "DOM"],
  6. "moduleResolution": "node",
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "skipLibCheck": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "declaration": true,
  12. "declarationMap": true,
  13. "sourceMap": true,
  14. "outDir": "./dist",
  15. "rootDir": "./src",
  16. "jsx": "react-jsx",
  17. "resolveJsonModule": true,
  18. "allowSyntheticDefaultImports": true,
  19. "experimentalDecorators": true,
  20. "emitDecoratorMetadata": true,
  21. "types": ["react"]
  22. },
  23. "include": ["src/**/*"],
  24. "exclude": ["node_modules", "dist", "tests"]
  25. }