fix: outDir should not be an array and needs to be under compilerOptions

This commit is contained in:
Derrick Hammer 2023-06-30 04:35:37 -04:00
parent ad8915911d
commit f3920365cc
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 3 additions and 1 deletions

View File

@ -77,7 +77,9 @@ export default function (): PresetAsset {
'rollup': resolve(CONFIGS, 'rollup.yaml'),
'tsconfig.build': {
include: ['{buildSource}'],
outDir: ['{source}'],
compilerOptions: {
outDir: '{source}',
},
},
},
variable: DEFAULT_VARIABLE,