27 lines
812 B
TypeScript
27 lines
812 B
TypeScript
import * as path from "path";
|
|
import * as config_base from "./webpack.config";
|
|
|
|
export = env => config_base.config(env, "client").then(config => {
|
|
Object.assign(config.entry, {
|
|
"main-app": ["./client/app/entry-points/AppMain.ts"],
|
|
"modal-external": ["./client/app/entry-points/ModalWindow.ts"]
|
|
});
|
|
|
|
Object.assign(config.resolve.alias, {
|
|
"tc-shared": path.resolve(__dirname, "shared/js"),
|
|
});
|
|
|
|
if(!Array.isArray(config.externals)) {
|
|
throw "invalid config";
|
|
}
|
|
|
|
config.externals.push(({ context, request }, callback) => {
|
|
if (request.startsWith("tc-backend/")) {
|
|
return callback(null, `window["backend-loader"].require("${request}")`);
|
|
}
|
|
|
|
callback(undefined, undefined);
|
|
});
|
|
|
|
return Promise.resolve(config);
|
|
}); |