tsconfig.json 551 B

123456789101112131415161718192021
  1. {
  2. "compilerOptions": {
  3. "target": "es6",
  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. "module": "esnext",
  12. "moduleResolution": "node",
  13. "noFallthroughCasesInSwitch": true,
  14. "resolveJsonModule": true,
  15. "isolatedModules": true,
  16. "noEmit": true,
  17. "jsx": "react-jsx"
  18. },
  19. "include": ["src"],
  20. "exclude": ["src/packages/excalidraw/types"]
  21. }