mirror of
https://github.com/excalidraw/excalidraw.git
synced 2025-04-14 16:40:58 -04:00
Some checks failed
Auto release excalidraw next / Auto-release-excalidraw-next (push) Failing after 2m36s
Build Docker image / build-docker (push) Failing after 6s
Cancel previous runs / cancel (push) Failing after 1s
Publish Docker / publish-docker (push) Failing after 31s
New Sentry production release / sentry (push) Failing after 2m3s
36 lines
1.3 KiB
JSON
36 lines
1.3 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"rootDir": "./",
|
|
"target": "ESNext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"types": ["vitest/globals", "@testing-library/jest-dom"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@excalidraw/common": ["./packages/common/src/index.ts"],
|
|
"@excalidraw/common/*": ["./packages/common/src/*"],
|
|
"@excalidraw/excalidraw": ["./packages/excalidraw/index.tsx"],
|
|
"@excalidraw/excalidraw/*": ["./packages/excalidraw/*"],
|
|
"@excalidraw/element": ["./packages/element/src/index.ts"],
|
|
"@excalidraw/element/*": ["./packages/element/src/*"],
|
|
"@excalidraw/math": ["./packages/math/src/index.ts"],
|
|
"@excalidraw/math/*": ["./packages/math/src/*"],
|
|
"@excalidraw/utils": ["./packages/utils/src/index.ts"],
|
|
"@excalidraw/utils/*": ["./packages/utils/src/*"]
|
|
}
|
|
},
|
|
"include": ["packages", "excalidraw-app"],
|
|
"exclude": ["examples", "dist", "types", "tests"]
|
|
}
|