tsconfig.json 517 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "target": "es2019",
  4. "allowJs": true,
  5. "esModuleInterop": true,
  6. "module": "commonjs",
  7. "moduleResolution": "node",
  8. "emitDecoratorMetadata": true,
  9. "experimentalDecorators": true,
  10. "skipLibCheck": true,
  11. "skipDefaultLibCheck": true,
  12. "declaration": true,
  13. "sourceMap": false,
  14. "outDir": "./dist",
  15. "rootDir": "./src",
  16. "baseUrl": ".",
  17. "jsx": "react"
  18. },
  19. "include": ["src"],
  20. "exclude": ["**/__tests__", "**/__fixtures__", "node_modules"]
  21. }