Ai
1 Star 0 Fork 0

十串/vue 源码学习

Create your Gitee Account
Explore and code with more than 13.5 million developers,Free private repositories !:)
Sign up
文件
This repository doesn't specify license. Please pay attention to the specific project description and its upstream code dependency when using it.
Clone or Download
rollup.config.js 436 Bytes
Copy Edit Raw Blame History
十串 authored 2025-03-22 18:05 +08:00 . init feat
import commonjs from '@rollup/plugin-commonjs'
import resolve from '@rollup/plugin-node-resolve'
import typescript from '@rollup/plugin-typescript'
export default [
{
input: 'packages/vue/src/index.ts',
output: [
{
name: 'Vue',
sourcemap: true,
file: './packages/vue/dist/vue.js',
format: 'iife'
}
],
plugins: [typescript({ sourceMap: true }), resolve(), commonjs()]
}
]
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zyz_ShiChuan/vue---source-code-learning.git
git@gitee.com:zyz_ShiChuan/vue---source-code-learning.git
zyz_ShiChuan
vue---source-code-learning
vue 源码学习
main

Search