mirror of
https://github.com/pezkuwichain/pezkuwi-extension.git
synced 2026-04-22 05:38:03 +00:00
4a9181d69b
- Fixed webpack.shared.cjs and webpack.config.cjs imports - Fixed rollup.config.js imports - Added x-* package resolutions - Renamed hooks/index.js to hooks/index.ts - Added pezkuwi-exec-webpack script alias - Updated tsconfig.base.json with pezkuwi paths
12 lines
323 B
JavaScript
12 lines
323 B
JavaScript
// Copyright 2019-2025 @pezkuwi/extension authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
const createConfig = require('./webpack.shared.cjs');
|
|
|
|
module.exports = createConfig({
|
|
background: './src/background.ts',
|
|
content: './src/content.ts',
|
|
extension: './src/extension.ts',
|
|
page: './src/page.ts'
|
|
});
|