From b239d0b79a3b4002736bb12bc931cd5df5d08933 Mon Sep 17 00:00:00 2001 From: Nicolas Cantu Date: Fri, 15 May 2026 23:07:09 +0200 Subject: [PATCH] Adjust archive frontend tooling configs for runtime path alignment. Update TypeScript and Vite settings so frontend runtime imports stay consistent with the current shared module layout. --- tsconfig.json | 3 ++- vite.config.ts | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 4b2dc7b..f98f439 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -19,7 +19,8 @@ } ], "paths": { - "@/*": ["./*"] + "@/*": ["./*"], + "@frontend-runtime/*": ["../apps/agent-studio-web/public/shared/frontend-runtime/*"] } }, "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], diff --git a/vite.config.ts b/vite.config.ts index d4e11c6..dae4f45 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -9,6 +9,7 @@ export default defineConfig({ '@': path.resolve(__dirname, './src'), '@/components': path.resolve(__dirname, './components'), '@/lib': path.resolve(__dirname, './lib'), + '@frontend-runtime': path.resolve(__dirname, '../apps/agent-studio-web/public/shared/frontend-runtime'), }, }, server: {