tsconfig.json 828 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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. "react",
  26. "node"
  27. ],
  28. "baseUrl": ".",
  29. "paths": {
  30. "@/*": [
  31. "src/*"
  32. ]
  33. }
  34. },
  35. "include": [
  36. "src/**/*",
  37. "tests"
  38. ],
  39. "exclude": [
  40. "node_modules",
  41. "dist",
  42. "../../allin-packages/**"
  43. ]
  44. }