feat: 使用esbuild

This commit is contained in:
2024-11-14 23:34:31 +08:00
parent 272845fe87
commit f11810220e
5 changed files with 109 additions and 11 deletions

View File

@@ -4,6 +4,10 @@ import typescript from '@rollup/plugin-typescript';
import resolve from '@rollup/plugin-node-resolve';
import commonjs from '@rollup/plugin-commonjs';
import json from '@rollup/plugin-json';
import path from 'path'
import esbuild from 'rollup-plugin-esbuild'
import alias from '@rollup/plugin-alias'
/**
* @type {import('rollup').RollupOptions}
*/
@@ -12,20 +16,57 @@ export default {
output: {
// file: 'dist/app.js', // 输出文件
dir: 'dist',
format: 'es', // 输出格式设置为 ES 模块
entryFileNames: 'app.mjs',
chunkFileNames: '[name]-[hash].mjs',
// format: 'cjs'
format: 'esm', // 输出格式设置为 ES 模块
},
plugins: [
resolve(), // 使用 @rollup/plugin-node-resolve 解析 node_modules 中的模块
alias({
// only esbuild needs to be configured
entries: [
{ find: '@', replacement: path.resolve('src') }, // 配置 @ 为 src 目录
{ find: 'http', replacement: 'node:http' },
{ find: 'https', replacement: 'node:https' },
{ find: 'fs', replacement: 'node:fs' },
{ find: 'path', replacement: 'node:path' },
{ find: 'crypto', replacement: 'node:crypto' },
{ find: 'zlib', replacement: 'node:zlib' },
{ find: 'stream', replacement: 'node:stream' },
{ find: 'net', replacement: 'node:net' },
{ find: 'tty', replacement: 'node:tty' },
{ find: 'tls', replacement: 'node:tls' },
{ find: 'buffer', replacement: 'node:buffer' },
{ find: 'timers', replacement: 'node:timers' },
// { find: 'string_decoder', replacement: 'node:string_decoder' },
{ find: 'dns', replacement: 'node:dns' },
{ find: 'domain', replacement: 'node:domain' },
{ find: 'os', replacement: 'node:os' },
{ find: 'events', replacement: 'node:events' },
{ find: 'url', replacement: 'node:url' },
{ find: 'assert', replacement: 'node:assert' },
{ find: 'util', replacement: 'node:util' }
]
}),
resolve({
preferBuiltins: true, // 强制优先使用内置模块
}), // 使用 @rollup/plugin-node-resolve 解析 node_modules 中的模块
commonjs({
// dynamicRequireTargets: ['node_modules/sqlite3/lib/*.js'],
}),
esbuild({
target: 'node22', // 目标为 Node.js 14
minify: false, // 启用代码压缩
tsconfig: 'tsconfig.json'
}),
json(),
typescript({
allowImportingTsExtensions: true,
noEmit: true,
// 不生成声明文件
declaration: false,
}), // 使用 @rollup/plugin-typescript 处理 TypeScript 文件
// typescript({
// allowImportingTsExtensions: true,
// noEmit: true,
// // 不生成声明文件
// declaration: false,
// }), // 使用 @rollup/plugin-typescript 处理 TypeScript 文件
],
external: ['sqlite3', 'sequelize', 'vite'], // 将 sqlite3 作为外部依赖
// 将 sqlite3 作为外部依赖
external: ['sqlite3', 'sequelize', 'vite', 'sequelize', '@kevisual/router', 'ioredis', 'socket.io', 'minio'],
};