tsconfig.json 394 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "strict": true,
  5. "outDir": "dist",
  6. "skipLibCheck": true,
  7. "declaration": true,
  8. "emitDeclarationOnly": true,
  9. "allowSyntheticDefaultImports": true,
  10. "module": "ESNext",
  11. "moduleResolution": "Node",
  12. "resolveJsonModule": true,
  13. "jsx": "react-jsx"
  14. },
  15. "exclude": ["**/*.test.*", "**/tests/*", "types", "dist"]
  16. }