From 03ec2fa6e6206feb92f8c032ca9d66c13d722253 Mon Sep 17 00:00:00 2001 From: Anoop M D Date: Sun, 7 Dec 2025 05:50:38 +0530 Subject: [PATCH] chore: fixed oc types resolution issue --- packages/bruno-filestore/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/bruno-filestore/tsconfig.json b/packages/bruno-filestore/tsconfig.json index 53a360ba2..7f8887e45 100644 --- a/packages/bruno-filestore/tsconfig.json +++ b/packages/bruno-filestore/tsconfig.json @@ -22,8 +22,8 @@ "paths": { "@usebruno/schema-types": ["packages/bruno-schema-types/dist/index.d.ts"], "@usebruno/schema-types/*": ["packages/bruno-schema-types/dist/*"], - "@opencollection/types": ["node_modules/@opencollection/types/dist/opencollection.d.ts"], - "@opencollection/types/*": ["node_modules/@opencollection/types/dist/*"] + "@opencollection/types": ["packages/bruno-filestore/node_modules/@opencollection/types/dist/opencollection.d.ts"], + "@opencollection/types/*": ["packages/bruno-filestore/node_modules/@opencollection/types/dist/*"] } }, "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.js", "src/**/*.d.ts"],