openreplay/frontend/path-alias.js
Shekar Siri 2ed5cac986
Webpack upgrade and dependency cleanup (#523)
* change(ui) - webpack update
* change(ui) - api optimize and other fixes
2022-06-03 16:47:38 +02:00

23 lines
No EOL
1 KiB
JavaScript

const path = require('path');
module.exports = {
"@": path.resolve(__dirname, "app"),
"App": path.resolve(__dirname, "app"),
"App/*": path.resolve(__dirname, "app/*"),
"SVG": path.resolve(__dirname, "app/svg"),
"SVG/*": path.resolve(__dirname, "app/svg/*"),
"Components": path.resolve(__dirname, "app/components"),
"Components/*": path.resolve(__dirname, "app/components/*"),
"Types": path.resolve(__dirname, "app/types" ),
"Types/*": path.resolve(__dirname, "app/types/*"),
"UI": path.resolve(__dirname, "app/components/ui"),
"UI/*": path.resolve(__dirname, "app/components/ui/*"),
"Duck": path.resolve(__dirname, "app/duck"),
"Duck/*": path.resolve(__dirname, "app/duck/*"),
"HOCs": path.resolve(__dirname, "app/components/hocs"),
"HOCs/*": path.resolve(__dirname, "app/components/hocs/*"),
"Shared": path.resolve(__dirname, "app/components/shared"),
"Shared/*": path.resolve(__dirname, "app/components/shared/*"),
"Player": path.resolve(__dirname, "app/player"),
"Player/*": path.resolve(__dirname, "app/player/*"),
};