Nuxt/packages/nuxi/build.config.ts
renovate[bot] 23397e603c
feat(deps): update all non-major dependencies (#2252)
Co-authored-by: Pooya Parsa <pyapar@gmail.com>
2021-12-14 16:46:05 +01:00

25 lines
428 B
TypeScript

import { defineBuildConfig } from 'unbuild'
export default defineBuildConfig({
declaration: true,
rollup: {
inlineDependencies: true,
cjsBridge: true
},
entries: [
'src/index'
],
externals: [
'@nuxt/kit',
'@nuxt/schema',
'fsevents',
// TODO: Fix rollup/unbuild issue
'node:buffer',
'node:path',
'node:child_process',
'node:process',
'node:path',
'node:os'
]
})