mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-10 18:03:01 +00:00
12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
const TsconfigPathsPlugin = require('tsconfig-paths-webpack-plugin');
|
|
|
|
module.exports = ({ onGetWebpackConfig }) => {
|
|
onGetWebpackConfig((config) => {
|
|
config.resolve
|
|
.plugin('tsconfigpaths')
|
|
.use(TsconfigPathsPlugin, [{
|
|
configFile: './tsconfig.json',
|
|
}]);
|
|
});
|
|
};
|