fix: outDir should not be an array and needs to be under compilerOptions
This commit is contained in:
parent
ad8915911d
commit
f3920365cc
|
@ -77,7 +77,9 @@ export default function (): PresetAsset {
|
||||||
'rollup': resolve(CONFIGS, 'rollup.yaml'),
|
'rollup': resolve(CONFIGS, 'rollup.yaml'),
|
||||||
'tsconfig.build': {
|
'tsconfig.build': {
|
||||||
include: ['{buildSource}'],
|
include: ['{buildSource}'],
|
||||||
outDir: ['{source}'],
|
compilerOptions: {
|
||||||
|
outDir: '{source}',
|
||||||
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
variable: DEFAULT_VARIABLE,
|
variable: DEFAULT_VARIABLE,
|
||||||
|
|
Loading…
Reference in New Issue