Skip to content

Commit

Permalink
chore: adjust vite alias paths & tsc paths (#6024)
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukas742 authored Jul 5, 2024
1 parent 455acc1 commit 160aa88
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
"@sb/*": ["./.storybook/*"],
"@ui5/webcomponents-cypress-commands": ["./packages/cypress-commands/src/index.ts"],
"@ui5/webcomponents-react": ["./packages/main/src/index.ts"],
"@ui5/webcomponents-react/dist/*": ["./packages/main/src/*"],
"@ui5/webcomponents-react-base": ["./packages/base/src/index.ts"],
"@ui5/webcomponents-react-charts": ["./packages/charts/src/index.ts"]
},
Expand Down
1 change: 1 addition & 0 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export default defineConfig(() => {
'@sb': fileURLToPath(new URL('./.storybook', import.meta.url)),
'@ui5/webcomponents-react-base': fileURLToPath(new URL('./packages/base/src/index.ts', import.meta.url)),
'@ui5/webcomponents-react-charts': fileURLToPath(new URL('./packages/charts/src/index.ts', import.meta.url)),
'@ui5/webcomponents-react/dist': fileURLToPath(new URL('./packages/main/src/', import.meta.url)),
'@ui5/webcomponents-react': fileURLToPath(new URL('./packages/main/src/index.ts', import.meta.url)),
'@/': fileURLToPath(new URL('./', import.meta.url))
}
Expand Down

0 comments on commit 160aa88

Please sign in to comment.