mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
16 lines
234 B
TypeScript
16 lines
234 B
TypeScript
|
import { defineBuildConfig } from 'unbuild'
|
||
|
|
||
|
export default defineBuildConfig({
|
||
|
declaration: true,
|
||
|
entries: [
|
||
|
'src/index'
|
||
|
],
|
||
|
dependencies: [
|
||
|
],
|
||
|
externals: [
|
||
|
'vitest',
|
||
|
'playwright',
|
||
|
'playwright-core'
|
||
|
]
|
||
|
})
|