source: trip-planner-front/node_modules/istanbul-reports/lib/html-spa/webpack.config.js@ bdd6491

Last change on this file since bdd6491 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 451 bytes
RevLine 
[6a3a178]1'use strict';
2
3const path = require('path');
4
5module.exports = {
6 entry: path.resolve(__dirname, 'src/index.js'),
7 output: {
8 path: path.resolve(__dirname, 'assets'),
9 filename: 'bundle.js'
10 },
11 module: {
12 rules: [
13 {
14 test: /\.js$/,
15 exclude: /node_modules/,
16 use: {
17 loader: 'babel-loader'
18 }
19 }
20 ]
21 }
22};
Note: See TracBrowser for help on using the repository browser.