Skip to content

Commit 160aa88

Browse files
authored
chore: adjust vite alias paths & tsc paths (#6024)
1 parent 455acc1 commit 160aa88

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

tsconfig.base.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"@sb/*": ["./.storybook/*"],
1414
"@ui5/webcomponents-cypress-commands": ["./packages/cypress-commands/src/index.ts"],
1515
"@ui5/webcomponents-react": ["./packages/main/src/index.ts"],
16+
"@ui5/webcomponents-react/dist/*": ["./packages/main/src/*"],
1617
"@ui5/webcomponents-react-base": ["./packages/base/src/index.ts"],
1718
"@ui5/webcomponents-react-charts": ["./packages/charts/src/index.ts"]
1819
},

vite.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export default defineConfig(() => {
1616
'@sb': fileURLToPath(new URL('./.storybook', import.meta.url)),
1717
'@ui5/webcomponents-react-base': fileURLToPath(new URL('./packages/base/src/index.ts', import.meta.url)),
1818
'@ui5/webcomponents-react-charts': fileURLToPath(new URL('./packages/charts/src/index.ts', import.meta.url)),
19+
'@ui5/webcomponents-react/dist': fileURLToPath(new URL('./packages/main/src/', import.meta.url)),
1920
'@ui5/webcomponents-react': fileURLToPath(new URL('./packages/main/src/index.ts', import.meta.url)),
2021
'@/': fileURLToPath(new URL('./', import.meta.url))
2122
}

0 commit comments

Comments
 (0)