1
0
mirror of https://github.com/verdaccio/verdaccio.git synced 2024-11-13 03:35:52 +01:00
verdaccio/packages/plugins/ui-theme/tools/webpack.config.js

83 lines
1.6 KiB
JavaScript
Raw Normal View History

const StyleLintPlugin = require('stylelint-webpack-plugin');
const env = require('../config/env');
module.exports = {
entry: `${env.SRC_ROOT}/index.tsx`,
output: {
path: `${env.APP_ROOT}/static/`,
filename: '[name].[fullhash].js',
publicPath: '-/static/',
},
resolve: {
extensions: ['.wasm', '.mjs', '.js', '.jsx', '.ts', '.tsx'],
modules: ['node_modules'],
alias: {
'verdaccio-ui/components': `${env.SRC_ROOT}/components`,
'verdaccio-ui/design-tokens': `${env.SRC_ROOT}/design-tokens`,
'verdaccio-ui/utils': `${env.SRC_ROOT}/utils`,
2021-04-15 21:10:28 +02:00
'verdaccio-ui/providers': `${env.SRC_ROOT}/providers`,
},
},
plugins: [
new StyleLintPlugin({
files: ['src/**/styles.ts'],
failOnError: false,
emitErrors: true,
}),
],
optimization: {
runtimeChunk: {
name: 'runtime',
},
splitChunks: {
chunks: 'all',
cacheGroups: {
commons: {
test: /[\\/]node_modules[\\/]/,
name: 'vendors',
chunks: 'initial',
},
},
},
},
module: {
rules: [
{
test: /\.jsx?$/,
exclude: /node_modules/,
use: 'babel-loader',
},
{
test: /\.m?js/,
resolve: {
fullySpecified: false,
},
},
{
test: /\.(jpe?g|png|gif|svg)$/,
type: 'asset/inline',
},
{
2021-04-15 21:10:28 +02:00
test: /\.css$/i,
use: ['style-loader', 'css-loader'],
},
/* Typescript loader */
{
test: /\.tsx?$/,
use: 'babel-loader',
exclude: /node_modules/,
},
],
},
stats: {
children: false,
},
};