remove webpack and webpack cli [ci:force] (#11464)

This commit is contained in:
Denys Vuika
2025-12-16 10:45:05 +00:00
committed by GitHub
parent 21d6818de5
commit 8c1118984d
3 changed files with 48 additions and 274 deletions
-20
View File
@@ -1,20 +0,0 @@
const { NxAppWebpackPlugin } = require('@nx/webpack/app-plugin');
const { join } = require('path');
module.exports = {
output: {
path: join(__dirname, '../../dist/libs/eslint-angular')
},
devServer: {
port: 4200
},
plugins: [
new NxAppWebpackPlugin({
main: './index.ts',
tsConfig: './tsconfig.lib.json',
index: './index.ts',
outputHashing: process.env['NODE_ENV'] === 'production' ? 'all' : 'none',
optimization: process.env['NODE_ENV'] === 'production'
})
]
};