]>
Commit | Line | Data |
---|---|---|
344f7c13 | 1 | // Imports: Dependencies |
2 | const path = require('path'); | |
3 | // require("babel-register");// Webpack Configuration | |
4 | const config = { | |
5 | ||
6 | // Entry | |
eaca9f28 | 7 | entry:'./content_script.js', // Output |
344f7c13 | 8 | output: { |
9 | path: path.resolve(__dirname, 'build'), | |
eaca9f28 | 10 | filename: 'content_script.js', |
344f7c13 | 11 | }, // Loaders |
12 | module: { | |
13 | rules : [ | |
14 | // JavaScript/JSX Files | |
15 | { | |
16 | test: /\.jsx$/, | |
17 | exclude: /node_modules/, | |
18 | use: ['babel-loader'], | |
19 | }, | |
20 | ] | |
21 | }, | |
22 | node: { fs: 'empty' },// Plugins | |
23 | plugins: [], | |
24 | };// Exports | |
eaca9f28 | 25 | module.exports = config; |