diff --git a/tsconfig.json b/tsconfig.json index eaa98835f..6540d48c2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,7 @@ { "compilerOptions": { "target": "ES2020", - "lib": [ - "dom", - "dom.iterable", - "ES2020" - ], + "lib": ["dom", "dom.iterable", "ES2020"], "allowJs": true, "skipLibCheck": true, "esModuleInterop": true, @@ -17,18 +13,11 @@ "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, - "jsx": "react-jsx", + "jsx": "react", "declaration": true, "emitDeclarationOnly": true, - "declarationDir": "dist/types", - "noEmit": true + "declarationDir": "dist/types" }, - "include": [ - "src" - ], - "exclude": [ - "node_modules", - "**/*.stories.tsx", - "**/*.test.tsx" - ] + "include": ["src"], + "exclude": ["node_modules", "**/*.stories.tsx", "**/*.test.tsx"] }