diff --git a/packages/create-twenty-app/src/constants/template/tsconfig.json b/packages/create-twenty-app/src/constants/template/tsconfig.json index d574c8c810..f71645f97a 100644 --- a/packages/create-twenty-app/src/constants/template/tsconfig.json +++ b/packages/create-twenty-app/src/constants/template/tsconfig.json @@ -6,7 +6,7 @@ "outDir": "./dist", "rootDir": ".", "jsx": "react-jsx", - "moduleResolution": "node", + "moduleResolution": "bundler", "allowSyntheticDefaultImports": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, diff --git a/packages/twenty-apps/examples/hello-world/tsconfig.json b/packages/twenty-apps/examples/hello-world/tsconfig.json index f4661f0ffd..83342568e5 100644 --- a/packages/twenty-apps/examples/hello-world/tsconfig.json +++ b/packages/twenty-apps/examples/hello-world/tsconfig.json @@ -6,7 +6,7 @@ "outDir": "./dist", "rootDir": ".", "jsx": "react-jsx", - "moduleResolution": "node", + "moduleResolution": "bundler", "allowSyntheticDefaultImports": true, "emitDecoratorMetadata": true, "experimentalDecorators": true, diff --git a/packages/twenty-apps/examples/postcard/tsconfig.json b/packages/twenty-apps/examples/postcard/tsconfig.json index 27f0c39cc1..20c8d89f95 100644 --- a/packages/twenty-apps/examples/postcard/tsconfig.json +++ b/packages/twenty-apps/examples/postcard/tsconfig.json @@ -6,7 +6,7 @@ "outDir": "./dist", "rootDir": ".", "jsx": "react-jsx", - "moduleResolution": "node", + "moduleResolution": "bundler", "allowSyntheticDefaultImports": true, "emitDecoratorMetadata": true, "experimentalDecorators": true,