0
で完全なサブディレクトリを指定する:私が見つけています...次のように私はWebPACKの2の構成を有するWebPACKの2エントリ
module.exports = {
context: __dirname,
entry: [
"./app.ts",
"./tab.ts",
"./client/clientService.ts",
"./client/clientSearchComponent.ts",
"./infrastructure/messageComponent.ts",
"./infrastructure/typeaheadComponent.ts",
"./url.ts"],
output: {
filename: "./wwwroot/js/admin/admin.js"
},
devtool: "source-map",
module: {
rules: [
{ test: /\.ts$/, use: 'ts-loader' }
]
}
};
次のようにこれは一気タスクにインポートされ
gulp.task("admin:js",
function (done) {
var configuration = require(path.join(__dirname, config.js, "admin/webpack.config.js").toString());
webpack(configuration).run(reportWebpackResults(done));
});
をentry[...]
に各コンポーネントを指定する必要があります。
globを指定するにはどうすればよいのですか。
entry: [
"./client/**/*.ts", // module not found...