mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
13 lines
469 B
JavaScript
13 lines
469 B
JavaScript
|
const TsconfigPathsPlugin = require("tsconfig-paths-webpack-plugin");
|
||
|
|
||
|
// Re-use the OSS CLI webpack config
|
||
|
const webpackConfig = require("../../apps/cli/webpack.config");
|
||
|
|
||
|
// Update paths to use the bit-cli entrypoint and tsconfig
|
||
|
webpackConfig.entry = { bw: "../../bitwarden_license/bit-cli/src/bw.ts" };
|
||
|
webpackConfig.resolve.plugins = [
|
||
|
new TsconfigPathsPlugin({ configFile: "../../bitwarden_license/bit-cli/tsconfig.json" }),
|
||
|
];
|
||
|
|
||
|
module.exports = webpackConfig;
|