mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-14 01:53:55 +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'
|
||
|
]
|
||
|
}
|