chore(website): remove unused api typescript alias

related to https://github.com/podman-desktop/podman-desktop/issues/15496
Signed-off-by: Florent Benoit <fbenoit@redhat.com>
This commit is contained in:
Florent Benoit 2026-02-13 11:11:07 +01:00 committed by Florent BENOIT
parent 57fe1536ec
commit 00bd2416e8
2 changed files with 1 additions and 12 deletions

View file

@ -3,9 +3,6 @@
"extends": "@docusaurus/tsconfig",
"compilerOptions": {
"strict": true,
"baseUrl": ".",
"paths": {
"/@api/*": ["../packages/api/src/*"]
}
"baseUrl": "."
}
}

View file

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