File tree Expand file tree Collapse file tree 3 files changed +6
-5
lines changed
Expand file tree Collapse file tree 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() {
6767 if ( tsconfigFile === true ) {
6868 tsconfig = getTsconfig ( '.' ) ?. config
6969 } else {
70- tsconfig = getTsconfig ( tsconfigFile ) ?. config
70+ tsconfig = getTsconfig ( '.' , tsconfigFile ) ?. config
71+ console . log ( tsconfig )
7172 if ( ! tsconfig ) {
7273 tsconfig = getTsconfig ( '.' ) ?. config
7374 }
Original file line number Diff line number Diff line change 22 "extends" : " ../../../../tsconfig.json" ,
33 "compilerOptions" : {
44 "baseUrl" : " ." ,
5- "outDir" : " dist" ,
6- "target" : " ES5"
5+ "outDir" : " dist"
76 },
87 "include" : [
98 " src/**/*"
Original file line number Diff line number Diff line change 11{
2- "extends" : " ../../../.. /tsconfig.json" ,
2+ "extends" : " ./tsconfig.json" ,
33 "compilerOptions" : {
44 "baseUrl" : " ." ,
5- "outDir" : " dist"
5+ "outDir" : " dist" ,
6+ "target" : " ES5"
67 },
78 "include" : [
89 " src/**/*"
You can’t perform that action at this time.
0 commit comments