@revoloo/cypress6
Version:
Cypress.io end to end testing tool
41 lines (36 loc) • 933 B
text/typescript
import getCommonConfig, { HtmlWebpackPlugin } from '@packages/web-config/webpack.config.base'
import path from 'path'
import webpack from 'webpack'
// @ts-ignore
const config: webpack.Configuration = {
...getCommonConfig(),
entry: {
app: path.resolve(__dirname, 'src/main'),
},
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
},
}
// @ts-ignore
config.plugins = [
// @ts-ignore
...config.plugins,
new HtmlWebpackPlugin({
template: path.resolve(__dirname, './src/index.html'),
env: process.env.NODE_ENV,
inject: false,
}),
]
config.resolve = {
...config.resolve,
alias: {
'bluebird': require.resolve('bluebird'),
'lodash$': require.resolve('lodash'),
'mobx': require.resolve('mobx'),
'mobx-react': require.resolve('mobx-react'),
'react': require.resolve('react'),
'react-dom': require.resolve('react-dom'),
},
}
export default config