Charles Lyding 03a00ee2c8 test(@angular-devkit/build-webpack): use Ivy Webpack plugin in unit tests
The ViewEngine-based Webpack compiler has now been removed.
2021-04-05 19:20:56 +02:00

37 lines
884 B
JavaScript

const ngToolsWebpack = require('@ngtools/webpack');
const path = require('path');
const workspaceRoot = path.resolve(__dirname, './');
const projectRoot = path.resolve(__dirname, './');
module.exports = {
mode: 'development',
resolve: {
extensions: ['.ts', '.js'],
},
entry: {
main: path.resolve(projectRoot, './src/main.ts'),
polyfills: path.resolve(projectRoot, './src/polyfills.ts')
},
output: {
path: path.resolve(workspaceRoot, './dist'),
filename: `[name].js`,
},
plugins: [
new ngToolsWebpack.AngularWebpackPlugin({
tsconfig: path.resolve(projectRoot, './src/tsconfig.app.json')
})
],
module: {
rules: [
{ test: /\.css$/, loader: 'raw-loader' },
{ test: /\.html$/, loader: 'raw-loader' },
{ test: /\.ts$/, loader: '@ngtools/webpack' },
]
},
devServer: {
historyApiFallback: true
}
};