2024-07-31 20:58:46 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2024-08-27 09:39:28 -07:00
|
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
2024-07-31 20:58:46 -07:00
|
|
|
"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"
|
|
|
|
},
|
2024-08-30 10:14:05 -07:00
|
|
|
"include": ["src"],
|
|
|
|
"exclude": ["src/client/jmap-client-ts/tests"]
|
2024-07-31 20:58:46 -07:00
|
|
|
}
|