From 40deef5204b7678bd2531cbc8a06525849face79 Mon Sep 17 00:00:00 2001 From: Innei Date: Mon, 19 May 2025 22:09:13 +0800 Subject: [PATCH] refactor(vitest): remove unused module resolutions - Eliminated the module resolutions for '@mx-space/compiled/auth' and '@mx-space/compiled' from vitest.config.mts to clean up the configuration. - This change helps streamline the configuration and improve maintainability. Signed-off-by: Innei --- apps/core/vitest.config.mts | 8 -------- 1 file changed, 8 deletions(-) diff --git a/apps/core/vitest.config.mts b/apps/core/vitest.config.mts index 400bbc5d..61497ccb 100644 --- a/apps/core/vitest.config.mts +++ b/apps/core/vitest.config.mts @@ -38,14 +38,6 @@ export default defineConfig({ __dirname, './test/mock/decorators/auth.decorator.ts', ), - '@mx-space/compiled/auth': resolve( - __dirname, - '../../packages/compiled/auth.ts', - ), - '@mx-space/compiled': resolve( - __dirname, - '../../packages/compiled/index.ts', - ), }, },