File tree 3 files changed +6
-5
lines changed
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -67,7 +67,8 @@ export default async function build() {
67
67
if ( tsconfigFile === true ) {
68
68
tsconfig = getTsconfig ( '.' ) ?. config
69
69
} else {
70
- tsconfig = getTsconfig ( tsconfigFile ) ?. config
70
+ tsconfig = getTsconfig ( '.' , tsconfigFile ) ?. config
71
+ console . log ( tsconfig )
71
72
if ( ! tsconfig ) {
72
73
tsconfig = getTsconfig ( '.' ) ?. config
73
74
}
Original file line number Diff line number Diff line change 2
2
"extends" : " ../../../../tsconfig.json" ,
3
3
"compilerOptions" : {
4
4
"baseUrl" : " ." ,
5
- "outDir" : " dist" ,
6
- "target" : " ES5"
5
+ "outDir" : " dist"
7
6
},
8
7
"include" : [
9
8
" src/**/*"
Original file line number Diff line number Diff line change 1
1
{
2
- "extends" : " ../../../.. /tsconfig.json" ,
2
+ "extends" : " ./tsconfig.json" ,
3
3
"compilerOptions" : {
4
4
"baseUrl" : " ." ,
5
- "outDir" : " dist"
5
+ "outDir" : " dist" ,
6
+ "target" : " ES5"
6
7
},
7
8
"include" : [
8
9
" src/**/*"
You can’t perform that action at this time.
0 commit comments