tsconfig.base.json 858 B

1234567891011121314151617181920212223242526
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "strict": true,
  5. "skipLibCheck": true,
  6. "declaration": true,
  7. "allowSyntheticDefaultImports": true,
  8. "module": "ESNext",
  9. "moduleResolution": "Node",
  10. "resolveJsonModule": true,
  11. "jsx": "react-jsx",
  12. "emitDeclarationOnly": true,
  13. "paths": {
  14. "@excalidraw/common": ["./common/src/index.ts"],
  15. "@excalidraw/common/*": ["./common/src/*"],
  16. "@excalidraw/element": ["./element/src/index.ts"],
  17. "@excalidraw/element/*": ["./element/src/*"],
  18. "@excalidraw/excalidraw": ["./excalidraw/index.tsx"],
  19. "@excalidraw/excalidraw/*": ["./excalidraw/*"],
  20. "@excalidraw/math": ["./math/src/index.ts"],
  21. "@excalidraw/math/*": ["./math/src/*"],
  22. "@excalidraw/utils": ["./utils/src/index.ts"],
  23. "@excalidraw/utils/*": ["./utils/src/*"]
  24. }
  25. }
  26. }