/
TheWitcher1991
/
HTMLREditor
Обзор
Документация
Войти
/
TheWitcher1991
/
HTMLREditor
Код
Запросы
0
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
webpack.config.js
30 строк
518 B
TheWitcher1991
Update 2.1.0
04 июл 2021, 16:42
04 июл 2021, 16:42
984b160
Код
Авторство
О чём код?
'use strict'; const path = require('path'); const webpack = require('webpack'); require('babel-polyfill'); module.exports = { entry: ['babel-polyfill', './src/app.js'], output: { path: path.join(__dirname, './build'), filename: 'script/htmlreditor.bundle.js' }, devtool: 'source-map', module: { rules: [ { test: /\.js$/, exclude: /(node_modules|bower_components)/, use: { loader: 'babel-loader', } } ] }, resolve: { modules: ['node_modules'], extensions: ['.js'] } };