From 039a04bc2f8efde618ed0404251ad56e62d11b51 Mon Sep 17 00:00:00 2001 From: martmull Date: Mon, 30 Mar 2026 10:56:59 +0200 Subject: [PATCH] Fix warning about ../../tsconfig.base.json not found (#19105) as title --- packages/twenty-client-sdk/tsconfig.json | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/packages/twenty-client-sdk/tsconfig.json b/packages/twenty-client-sdk/tsconfig.json index 43709b3de8..94471fd43b 100644 --- a/packages/twenty-client-sdk/tsconfig.json +++ b/packages/twenty-client-sdk/tsconfig.json @@ -1,6 +1,19 @@ { - "extends": "../../tsconfig.base.json", + "compileOnSave": false, "compilerOptions": { + "rootDir": ".", + "sourceMap": true, + "declaration": false, + "moduleResolution": "node", + "emitDecoratorMetadata": true, + "experimentalDecorators": true, + "importHelpers": true, + "target": "es2018", + "module": "esnext", + "lib": ["es2020", "dom"], + "skipLibCheck": true, + "skipDefaultLibCheck": true, + "resolveJsonModule": true, "allowJs": false, "esModuleInterop": false, "allowSyntheticDefaultImports": true,