tsconfig-types.json 556 B

12345678910111213141516171819
  1. {
  2. "include": ["src/packages/excalidraw", "src/global.d.ts", "src/css.d.ts"],
  3. "compilerOptions": {
  4. "types": ["vite/client", "vite-plugin-svgr/client"],
  5. "allowJs": true,
  6. "declaration": true,
  7. "emitDeclarationOnly": true,
  8. "outDir": "src/packages/excalidraw/types",
  9. "jsx": "react-jsx",
  10. "target": "es6",
  11. "lib": ["dom", "dom.iterable", "esnext"],
  12. "module": "ESNext",
  13. "moduleResolution": "node",
  14. "resolveJsonModule": true,
  15. "skipLibCheck": true,
  16. "allowSyntheticDefaultImports": true,
  17. "strict": true
  18. }
  19. }