2020-01-03 00:03:48 +05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2020-03-25 11:42:16 -04:00
|
|
|
"target": "es6",
|
2021-11-02 14:24:16 +02:00
|
|
|
"lib": ["esnext"],
|
2020-01-03 00:03:48 +05:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2020-10-28 18:28:07 +02:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2020-01-03 00:03:48 +05:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"noEmit": true,
|
2020-12-20 14:40:11 +02:00
|
|
|
"jsx": "react-jsx"
|
2020-01-03 00:03:48 +05:00
|
|
|
},
|
2021-04-10 19:17:49 +02:00
|
|
|
"include": ["src"],
|
|
|
|
"exclude": ["src/packages/excalidraw/types"]
|
2020-01-03 00:03:48 +05:00
|
|
|
}
|