mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-12 17:13:56 +00:00
17 lines
286 B
TypeScript
17 lines
286 B
TypeScript
import type { BuildConfig } from 'unbuild'
|
|
|
|
export default <BuildConfig>{
|
|
declaration: true,
|
|
entries: [
|
|
{
|
|
input: 'src/config/schema/index',
|
|
name: 'config',
|
|
builder: 'untyped',
|
|
defaults: {
|
|
rootDir: '<rootDir>'
|
|
}
|
|
},
|
|
'src/index'
|
|
]
|
|
}
|