tsconfig.json 656 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": ["dom", "dom.iterable", "esnext"],
  5. "allowJs": true,
  6. "skipLibCheck": true,
  7. "esModuleInterop": true,
  8. "allowSyntheticDefaultImports": true,
  9. "strict": true,
  10. "forceConsistentCasingInFileNames": true,
  11. "noFallthroughCasesInSwitch": true,
  12. "module": "ESNext",
  13. "moduleResolution": "node",
  14. "resolveJsonModule": true,
  15. "isolatedModules": true,
  16. "noEmit": true,
  17. "jsx": "react-jsx"
  18. },
  19. "include": ["packages", "excalidraw-app"],
  20. "exclude": ["packages/excalidraw/types", "examples", "packages/**/tests/**", "packages/**/dist/**", "excalidraw-app/tests"]
  21. }