加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.esbuildrc.js 952 Bytes
一键复制 编辑 原始数据 按行查看 历史
shiyangyang 提交于 2024-04-10 18:28 . update f2e-server@2.20.*
// @ts-check
const PluginPostCSS = require('esbuild-plugin-postcss').default
/**
* @type { import('f2e-middle-esbuild').BuildOptions }
*/
let config = {
sourcemap: 'external',
entryPoints: {
background: 'src/scope/background/index.ts',
content: 'src/scope/content/index.tsx',
main: 'src/scope/main/index.tsx',
popup: 'src/scope/popup/index.tsx',
},
inject: ['./config/inject.js'],
outdir: 'js',
target: 'chrome70',
jsxFactory: 'React.createElement',
bundle: true,
format: 'iife',
// plugins: [PluginPostCSS()],
plugins: [
PluginPostCSS({
lessOptions: {},
}),
],
loader: {
'.tsx': 'tsx',
'.ts': 'ts',
'.png': 'file',
'.jpg': 'file',
'.svg': 'dataurl',
'.json': 'json',
'.txt': 'text',
},
tsconfig: './tsconfig.json',
};
module.exports = config
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化