From 156fba95d755bb67f5422c33e221290de65719ca Mon Sep 17 00:00:00 2001 From: Lilith Date: Mon, 16 Feb 2026 13:44:28 -0800 Subject: [PATCH] =?UTF-8?q?chore(profile/display-specific-to):=20?= =?UTF-8?q?=F0=9F=94=A7=20Update=20TypeScript=20config=20to=20optimize=20c?= =?UTF-8?q?ompiler=20settings=20for=20profile=20display=20module?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/profile/client/display/tsconfig.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/features/profile/client/display/tsconfig.json b/features/profile/client/display/tsconfig.json index 14f0edd1a..6619201f0 100644 --- a/features/profile/client/display/tsconfig.json +++ b/features/profile/client/display/tsconfig.json @@ -1,13 +1,13 @@ { - "extends": "../../../../../tsconfig.base.json", + "extends": "../../../../tsconfig.base.json", "compilerOptions": { - "composite": true, "outDir": "./dist", "rootDir": "./src", "jsx": "react-jsx", "declaration": true, "declarationMap": true, - "sourceMap": true + "sourceMap": true, + "incremental": false }, "include": ["src/**/*"], "exclude": ["node_modules", "dist", "**/*.spec.ts", "**/*.spec.tsx", "**/__tests__/**"]