From 40ded1218588ed5da2b3ddf9c206f2d3af2ca8f6 Mon Sep 17 00:00:00 2001 From: Martin Hochel Date: Thu, 23 May 2024 13:21:42 +0200 Subject: [PATCH] fix(recipes-react-components): explicitly set types to not include whole @types/* globals which are cauising issues with addition of @types/web --- apps/recipes-react-components/tsconfig.app.json | 3 +-- apps/recipes-react-components/tsconfig.json | 4 +--- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/apps/recipes-react-components/tsconfig.app.json b/apps/recipes-react-components/tsconfig.app.json index 124eb3b4f11f8b..a623085f89633d 100644 --- a/apps/recipes-react-components/tsconfig.app.json +++ b/apps/recipes-react-components/tsconfig.app.json @@ -3,8 +3,7 @@ "compilerOptions": { "noEmit": true, "lib": ["ES2019", "dom"], - "declaration": true, - "inlineSources": true + "types": [] }, "include": ["./src/**/*.ts", "./src/**/*.tsx"] } diff --git a/apps/recipes-react-components/tsconfig.json b/apps/recipes-react-components/tsconfig.json index c7a240c7fbce9a..fa6520ff6babe8 100644 --- a/apps/recipes-react-components/tsconfig.json +++ b/apps/recipes-react-components/tsconfig.json @@ -5,11 +5,9 @@ "target": "ES2019", "noEmit": true, "isolatedModules": true, - "importHelpers": true, "jsx": "react", "noUnusedLocals": true, - "preserveConstEnums": true, - "skipLibCheck": true + "preserveConstEnums": true }, "include": [], "files": [],