2021-09-15 17:27:17 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-12-14 10:34:03 +00:00
|
|
|
"target": "ES2020",
|
2021-12-14 13:07:46 +00:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"ES2020"
|
|
|
|
],
|
2021-09-15 17:27:17 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-12-14 10:34:03 +00:00
|
|
|
"jsx": "react-jsx",
|
|
|
|
"declaration": true,
|
|
|
|
"emitDeclarationOnly": true,
|
2021-12-14 13:07:46 +00:00
|
|
|
"declarationDir": "dist/types",
|
|
|
|
"noEmit": true
|
2021-09-15 17:27:17 +00:00
|
|
|
},
|
2021-12-14 13:07:46 +00:00
|
|
|
"include": [
|
|
|
|
"src"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.stories.tsx",
|
|
|
|
"**/*.test.tsx"
|
|
|
|
]
|
2021-09-15 17:27:17 +00:00
|
|
|
}
|