2021-04-21 15:52:40 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-05-04 18:14:28 -04:00
|
|
|
"outDir": "./dist",
|
2022-05-01 13:30:11 -04:00
|
|
|
"target": "es2021",
|
2021-04-21 15:52:40 -04:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"esnext"
|
|
|
|
],
|
2022-05-04 18:14:28 -04:00
|
|
|
"declaration": true,
|
|
|
|
"sourceMap": true,
|
2021-04-21 15:52:40 -04:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-11-11 13:48:31 -05:00
|
|
|
"jsx": "react-jsx"
|
2021-04-21 15:52:40 -04:00
|
|
|
},
|
2022-05-04 18:14:28 -04:00
|
|
|
"include": ["src"],
|
|
|
|
"exclude": ["node_modules", "**/*.test.ts"]
|
2021-04-21 15:52:40 -04:00
|
|
|
}
|