webpack-bundlerを使用して1つのbundle.jsファイル内のフォルダにあるすべてのtsxファイルをコンパイルしようとしています。webpack-bundlerに関する問題
var glob = require('glob');
module.exports = {
entry: toObject(glob.sync('./src/editor/**/*.ts*')),
output: {
filename: "bundle.js",
path: __dirname + "/out",
library:'bundle',
libraryTarget:'var'
},
// Enable sourcemaps for debugging webpack's output.
devtool: "source-map",
resolve: {
// Add '.ts' and '.tsx' as resolvable extensions.
extensions: [".ts", ".tsx", ".js", ".json"]
},
module: {
rules: [
// All files with a '.ts' or '.tsx' extension will be handled by 'awesome-typescript-loader'.
{ test: /\.tsx?$/, loader: "awesome-typescript-loader" },
// All output '.js' files will have any sourcemaps re-processed by 'source-map-loader'.
{ enforce: "pre", test: /\.js$/, loader: "source-map-loader" }
]
},
// When importing a module whose path matches one of the following, just
// assume a corresponding global variable exists and use that instead.
// This is important because it allows us to avoid bundling all of our
// dependencies, which allows browsers to cache those libraries between builds.
};
function toObject(paths) {
var ret = {};
paths.forEach(function(path) {
// you can define entry names mapped to [name] here
ret[path.split('/').slice(-1)[0]] = path;
});
return ret;
}
今私はそれをコンパイルしようとしていたときに、それは
として私にエラーを与えている「紛争:複数の資産が同じファイル名に放出し、[バンドル] 私webpack.config.jsこのようです.js " 各ファイルごとに同じエラーが発生しています。 ファイル自体は個別です。
誰かが私にそれを行う方法を教えてもらえますか?
あなたは今、それは 'src'ディレクトリ –