build: export types for @excalidraw/utils (#7736)

* build: export types for @excalidraw/utils

* fix

* add types
This commit is contained in:
Aakansha Doshi 2024-02-29 15:43:04 +05:30 committed by GitHub
parent 99601baffc
commit f207bd0a1c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 23 additions and 1 deletions

View file

@ -0,0 +1,16 @@
{
"compilerOptions": {
"target": "ESNext",
"strict": true,
"outDir": "dist",
"skipLibCheck": true,
"declaration": true,
"emitDeclarationOnly": true,
"allowSyntheticDefaultImports": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"jsx": "react-jsx"
},
"exclude": ["**/*.test.*", "**/tests/*", "types", "dist"]
}