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)'],