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-09-21 05:58:48 +02:00
|
|
|
"include": ["src", "excalidraw-app"],
|
2021-04-10 19:17:49 +02:00
|
|
|
"exclude": ["src/packages/excalidraw/types"]
|
2020-01-02 20:03:48 +01:00
|
|
|
}
|