tsconfig.json 842 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "compilerOptions": {
  3. "target": "ES5",
  4. "module": "ESNext",
  5. "lib": [
  6. "ES2020",
  7. "DOM"
  8. ],
  9. "moduleResolution": "bundler",
  10. "strict": true,
  11. "esModuleInterop": true,
  12. "skipLibCheck": true,
  13. "forceConsistentCasingInFileNames": true,
  14. "declaration": true,
  15. "declarationMap": true,
  16. "sourceMap": true,
  17. "outDir": "./dist",
  18. "rootDir": ".",
  19. "jsx": "react-jsx",
  20. "resolveJsonModule": true,
  21. "allowSyntheticDefaultImports": true,
  22. "experimentalDecorators": true,
  23. "emitDecoratorMetadata": true,
  24. "types": [
  25. "jest",
  26. "react",
  27. "node"
  28. ],
  29. "baseUrl": ".",
  30. "paths": {
  31. "@/*": [
  32. "src/*"
  33. ]
  34. }
  35. },
  36. "include": [
  37. "src/**/*",
  38. "tests"
  39. ],
  40. "exclude": [
  41. "node_modules",
  42. "dist",
  43. "../../allin-packages/**"
  44. ]
  45. }