mirror of
https://github.com/Gongxh0901/kunpolibrary
synced 2025-04-04 10:41:04 +00:00
86 lines
2.4 KiB
JavaScript
86 lines
2.4 KiB
JavaScript
import terser from '@rollup/plugin-terser';
|
|
import typescript from '@rollup/plugin-typescript';
|
|
import dts from 'rollup-plugin-dts';
|
|
|
|
export default [
|
|
{
|
|
// 生成未压缩的 JS 文件
|
|
input: 'src/kunpocc.ts',
|
|
external: ['cc', 'fairygui-cc'],
|
|
output: [
|
|
{
|
|
file: 'dist/kunpocc.mjs',
|
|
format: 'esm',
|
|
name: 'kunpocc'
|
|
},
|
|
{
|
|
file: 'dist/kunpocc.cjs',
|
|
format: 'cjs',
|
|
name: 'kunpocc'
|
|
}
|
|
],
|
|
plugins: [
|
|
typescript({
|
|
tsconfig: './tsconfig.json',
|
|
importHelpers: false,
|
|
compilerOptions: {
|
|
target: "es6",
|
|
module: "es6",
|
|
experimentalDecorators: true, // 启用ES装饰器。
|
|
strict: true,
|
|
strictNullChecks: false,
|
|
moduleResolution: "Node",
|
|
skipLibCheck: true,
|
|
esModuleInterop: true,
|
|
}
|
|
})
|
|
]
|
|
},
|
|
{
|
|
// 生成压缩的 JS 文件
|
|
input: 'src/kunpocc.ts',
|
|
external: ['cc', 'fairygui-cc'],
|
|
output: [
|
|
{
|
|
file: 'dist/kunpocc.min.mjs',
|
|
format: 'esm',
|
|
name: 'kunpocc'
|
|
},
|
|
{
|
|
file: 'dist/kunpocc.min.cjs',
|
|
format: 'cjs',
|
|
name: 'kunpocc'
|
|
}
|
|
],
|
|
plugins: [
|
|
typescript({
|
|
tsconfig: './tsconfig.json',
|
|
importHelpers: false,
|
|
compilerOptions: {
|
|
target: "es6",
|
|
module: "es6",
|
|
experimentalDecorators: true, // 启用ES装饰器。
|
|
strict: true,
|
|
strictNullChecks: false,
|
|
moduleResolution: "Node",
|
|
skipLibCheck: true,
|
|
esModuleInterop: true,
|
|
}
|
|
}),
|
|
terser()
|
|
]
|
|
},
|
|
{
|
|
// 生成声明文件的配置
|
|
input: 'src/kunpocc.ts',
|
|
output: {
|
|
file: 'dist/kunpocc.d.ts',
|
|
format: 'es'
|
|
},
|
|
plugins: [dts({
|
|
compilerOptions: {
|
|
stripInternal: true
|
|
}
|
|
})]
|
|
}
|
|
];
|