mirror of
https://github.com/bitwarden/browser
synced 2026-02-11 14:04:03 +00:00
13 lines
281 B
JavaScript
13 lines
281 B
JavaScript
const { buildConfig } = require("./webpack.base");
|
|
|
|
module.exports = buildConfig({
|
|
popup: {
|
|
entry: "./src/popup/main.ts",
|
|
entryModule: "src/popup/app.module#AppModule",
|
|
},
|
|
background: {
|
|
entry: "./src/platform/background.ts",
|
|
},
|
|
tsConfig: "tsconfig.json",
|
|
});
|