mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-05-03 10:00:07 -04:00
24 lines
732 B
JSON
24 lines
732 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist/types",
|
|
"target": "ESNext",
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"declaration": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react-jsx",
|
|
"emitDeclarationOnly": true,
|
|
"paths": {
|
|
"@excalidraw/excalidraw": ["../excalidraw/index.tsx"],
|
|
"@excalidraw/utils": ["../utils/index.ts"],
|
|
"@excalidraw/math": ["../math/index.ts"],
|
|
"@excalidraw/excalidraw/*": ["../excalidraw/*"],
|
|
"@excalidraw/utils/*": ["../utils/*"],
|
|
"@excalidraw/math/*": ["../math/*"]
|
|
}
|
|
},
|
|
"exclude": ["**/*.test.*", "tests", "types", "examples", "dist"]
|
|
}
|