From 00bd2416e8dc4992f4351e42e6a92a81ba6d0933 Mon Sep 17 00:00:00 2001 From: Florent Benoit Date: Fri, 13 Feb 2026 11:11:07 +0100 Subject: [PATCH] chore(website): remove unused api typescript alias related to https://github.com/podman-desktop/podman-desktop/issues/15496 Signed-off-by: Florent Benoit --- website/tsconfig.json | 5 +---- website/vitest.config.js | 8 -------- 2 files changed, 1 insertion(+), 12 deletions(-) diff --git a/website/tsconfig.json b/website/tsconfig.json index 3d20ae758b0..53fc08feae5 100644 --- a/website/tsconfig.json +++ b/website/tsconfig.json @@ -3,9 +3,6 @@ "extends": "@docusaurus/tsconfig", "compilerOptions": { "strict": true, - "baseUrl": ".", - "paths": { - "/@api/*": ["../packages/api/src/*"] - } + "baseUrl": "." } } diff --git a/website/vitest.config.js b/website/vitest.config.js index 54de70c366a..89870483572 100644 --- a/website/vitest.config.js +++ b/website/vitest.config.js @@ -15,16 +15,8 @@ * * SPDX-License-Identifier: Apache-2.0 ***********************************************************************/ -import { join } from 'path'; - -const PACKAGE_ROOT = __dirname; const config = { - resolve: { - alias: { - '/@api/': join(PACKAGE_ROOT, '../packages/api/src') + '/', - }, - }, test: { environment: 'node', include: ['**/*.{test,spec}.?(c|m)[jt]s?(x)'],