excalidraw/packages/excalidraw/tsconfig.json
2025-01-29 17:38:03 +01:00

18 lines
431 B
JSON

{
"exclude": ["**/*.test.*", "tests", "types", "examples", "dist"],
"compilerOptions": {
"target": "ESNext",
"strict": true,
"outDir": "dist",
"skipLibCheck": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"module": "ESNext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"jsx": "react-jsx",
"types": [
"@cloudflare/workers-types/2023-07-01"
],
}
}