forked from Outils-PeerTube/peertube-plugin-auto-import-ytb
21 lines
412 B
JavaScript
21 lines
412 B
JavaScript
|
const path = require("path")
|
||
|
|
||
|
const EsmWebpackPlugin = require("@purtuga/esm-webpack-plugin")
|
||
|
|
||
|
const clientFiles = [
|
||
|
'common-client-plugin.js'
|
||
|
]
|
||
|
|
||
|
let config = clientFiles.map(f => ({
|
||
|
entry: "./client/" + f,
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, "./dist"),
|
||
|
filename: "./" + f,
|
||
|
library: "script",
|
||
|
libraryTarget: "var"
|
||
|
},
|
||
|
plugins: [ new EsmWebpackPlugin() ]
|
||
|
}))
|
||
|
|
||
|
module.exports = config
|