mirror of
https://github.com/element-plus/element-plus.git
synced 2024-11-21 01:02:59 +08:00
6a290ff85a
* fix: fetching contributors * refactor(build): improve building * fix: building * refactor: build constants * fix: lockfile * ci: remove token * ci: rename * refactor: improve docs constant
11 lines
181 B
TypeScript
11 lines
181 B
TypeScript
import { defineBuildConfig } from 'unbuild'
|
|
|
|
export default defineBuildConfig({
|
|
entries: ['src/index'],
|
|
clean: true,
|
|
declaration: true,
|
|
rollup: {
|
|
emitCJS: true,
|
|
},
|
|
})
|