chore: lint

This commit is contained in:
Daniel Roe 2024-07-03 22:28:23 +01:00
parent e63e34f9ab
commit eaa0ebee6c
No known key found for this signature in database
GPG Key ID: CBC814C393D93268
7 changed files with 16 additions and 16 deletions

View File

@ -88,7 +88,7 @@ export async function initNitro (nuxt: Nuxt & { _nitro?: Nitro }) {
esbuild: {
options: {
exclude: excludePattern,
...nuxt.options.esbuild.options
...nuxt.options.esbuild.options,
},
},
analyze: !nuxt.options.test && nuxt.options.build.analyze && (nuxt.options.build.analyze === true || nuxt.options.build.analyze.enabled)

View File

@ -11,11 +11,11 @@ export default defineUntypedSchema({
$resolve: async (val: TransformOptions['tsconfigRaw'], get) => {
return defu(val, {
compilerOptions: {
experimentalDecorators: await get('experimental.decorators') as boolean
}
experimentalDecorators: await get('experimental.decorators') as boolean,
},
} satisfies TransformOptions['tsconfigRaw'])
}
}
}
},
},
},
},
})

View File

@ -78,15 +78,15 @@ export default defineUntypedSchema({
*/
tsConfig: {
$resolve: async (val, get) => {
if (val) return val
if (val) { return val }
const enableDecorators = await get('experimental.decorators')
if (!enableDecorators) return {}
if (!enableDecorators) { return {} }
return {
compilerOptions: {
experimentalDecorators: true
}
experimentalDecorators: true,
},
} satisfies TSConfig
},
},

View File

@ -85,7 +85,7 @@ export default defineUntypedSchema({
esbuild: {
$resolve: async (val: Record<string, any>, get) => {
return defu(val, await get('esbuild.options') as Record<string, any>)
}
},
},
clearScreen: true,
build: {

View File

@ -160,7 +160,7 @@ export default defineUntypedSchema({
esbuild: {
$resolve: async (val: Record<string, any>, get) => {
return defu(val, await get('esbuild.options') as Record<string, any>)
}
},
},
/**