mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
17 lines
308 B
TypeScript
17 lines
308 B
TypeScript
import { defineBuildConfig } from 'unbuild'
|
|
|
|
export default defineBuildConfig({
|
|
declaration: true,
|
|
entries: [
|
|
'src/index',
|
|
{ input: 'src/runtime/', outDir: 'dist/runtime', format: 'esm' }
|
|
],
|
|
externals: [
|
|
'vitest',
|
|
'jest',
|
|
'playwright',
|
|
'playwright-core',
|
|
'listhen'
|
|
]
|
|
})
|