2020-01-02 20:03:48 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-07-27 20:20:11 +02:00
|
|
|
"target": "ESNext",
|
2021-11-19 19:51:28 +01:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2020-01-02 20:03:48 +01:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2023-07-26 19:04:06 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2023-07-27 20:20:11 +02:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "node",
|
2020-01-02 20:03:48 +01:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2020-12-20 13:40:11 +01:00
|
|
|
"jsx": "react-jsx"
|
2020-01-02 20:03:48 +01:00
|
|
|
},
|
2023-12-12 07:02:51 +01:00
|
|
|
"include": ["packages", "excalidraw-app"],
|
2024-01-24 12:37:54 +01:00
|
|
|
"exclude": ["packages/excalidraw/types", "examples"]
|
2020-01-02 20:03:48 +01:00
|
|
|
}
|