forked from pneymrl2f/nightingale
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
976 B
20 lines
976 B
var path = require('path');
|
|
var cwd = process.cwd();
|
|
|
|
module.exports = {
|
|
'react-dom': '@hot-loader/react-dom',
|
|
'@common': path.resolve(cwd, 'src/common'),
|
|
'@cpts': path.resolve(cwd, 'src/components'),
|
|
'@interface': path.resolve(cwd, 'src/interface'),
|
|
'@path/common': path.resolve(cwd, 'src/common'),
|
|
'@path/components': path.resolve(cwd, 'src/components'),
|
|
'@path/Auth': path.resolve(cwd, 'src/components/Auth'),
|
|
'@path/Layout': path.resolve(cwd, 'src/components/Layout'),
|
|
'@path/Exception': path.resolve(cwd, 'src/components/Exception'),
|
|
'@path/BaseComponent': path.resolve(cwd, 'src/components/BaseComponent/index.jsx'),
|
|
'@path/LayoutBreadcrumb': path.resolve(cwd, 'src/components/Layout/LayoutBreadcrumb.jsx'),
|
|
'@path/LayoutNsShow': path.resolve(cwd, 'src/components/Layout/LayoutNsShow.jsx'),
|
|
'@path/ModalControl': path.resolve(cwd, 'src/components/ModalControl/index.tsx'),
|
|
'@path/clipboard': path.resolve(cwd, 'src/common/clipboard.jsx'),
|
|
};
|