mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 16:43:55 +00:00
b31405f6fd
Co-authored-by: Pooya Parsa <pooya@pi0.io>
16 lines
238 B
TypeScript
16 lines
238 B
TypeScript
import { defineBuildConfig } from 'unbuild'
|
|
|
|
export default defineBuildConfig({
|
|
declaration: true,
|
|
entries: [
|
|
'src/index'
|
|
],
|
|
externals: [
|
|
'vitest',
|
|
'jest',
|
|
'playwright',
|
|
'playwright-core',
|
|
'listhen'
|
|
]
|
|
})
|