mirror of
https://github.com/certd/certd.git
synced 2025-11-25 09:10:11 +08:00
14 lines
186 B
JavaScript
14 lines
186 B
JavaScript
export default {
|
|
input: 'src/index.js',
|
|
output: [
|
|
{
|
|
file: 'dist/index.cjs',
|
|
format: 'cjs'
|
|
},
|
|
{
|
|
file: 'dist/index.es.js',
|
|
format: 'es'
|
|
}
|
|
]
|
|
}
|