fix config

This commit is contained in:
Dexter 2021-12-14 12:18:51 +00:00
parent b3617eed30
commit 003bb68c06

View File

@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "ES2020",
"lib": [
"dom",
"dom.iterable",
"ES2020"
],
"lib": ["dom", "dom.iterable", "ES2020"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
@ -20,14 +16,8 @@
"jsx": "react-jsx",
"declaration": true,
"emitDeclarationOnly": true,
"declarationDir": "dist/types",
"noEmit": true
"declarationDir": "dist/types"
},
"include": [
"src"
],
"exclude": [
"node_modules",
"**/*.stories.tsx"
]
"include": ["src"],
"exclude": ["node_modules", "**/*.stories.tsx", "**/*.test.tsx"]
}