projecte_ionic/node_modules/istanbul-reports/lib/html-spa/webpack.config.js
2022-02-09 18:30:03 +01:00

23 lines
451 B
JavaScript
Executable file

'use strict';
const path = require('path');
module.exports = {
entry: path.resolve(__dirname, 'src/index.js'),
output: {
path: path.resolve(__dirname, 'assets'),
filename: 'bundle.js'
},
module: {
rules: [
{
test: /\.js$/,
exclude: /node_modules/,
use: {
loader: 'babel-loader'
}
}
]
}
};