1 Star 0 Fork 0

holyhigh/uiik

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rollup.config.test.js 931 Bytes
一键复制 编辑 原始数据 按行查看 历史
holyhigh 提交于 2023-11-22 22:57 . v 1.3.0-beta.2
import {nodeResolve} from '@rollup/plugin-node-resolve';
import serve from 'rollup-plugin-serve';
import livereload from 'rollup-plugin-livereload';
import json from '@rollup/plugin-json';
import typescript from 'rollup-plugin-typescript2';
const pkg = require('./package.json');
export default {
input: 'src/index.ts',
output: {
file: 'test/uiik.js',
format: 'esm',
banner: `/* ${pkg.name} ${pkg.version} @${pkg.author} ${pkg.repository.url} */`,
},
plugins: [
nodeResolve(),
typescript({
clean: true,
useTsconfigDeclarationDir: true,
tsconfigOverride: {
compilerOptions: {
declarationDir: './dist/types',
},
},
}),
serve({
open: true,
port: 8818,
openPage: '/test/index.html',
host: 'localhost',
headers: {
'Access-Control-Allow-Origin': '*',
},
}),
livereload('test'),
json(),
],
};
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/holyhigh2/uiik.git
git@gitee.com:holyhigh2/uiik.git
holyhigh2
uiik
uiik
main

搜索帮助