tsconfig.json 858 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "compilerOptions": {
  3. "target": "ES5",
  4. "module": "ESNext",
  5. "lib": [
  6. "ES2020",
  7. "DOM"
  8. ],
  9. "moduleResolution": "bundler",
  10. "strict": false,
  11. "esModuleInterop": true,
  12. "skipLibCheck": true,
  13. "forceConsistentCasingInFileNames": false,
  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. "noEmitOnError": false
  35. },
  36. "include": [
  37. "src/**/*",
  38. "tests"
  39. ],
  40. "exclude": [
  41. "node_modules",
  42. "dist",
  43. "../../allin-packages/**"
  44. ]
  45. }