@@ -79,10 +79,10 @@ export function generateContext(context?: BuildContext): BuildContext {
7979 const sourceMapTypeValue = getConfigValue ( context , '--sourceMapType' , null , Constants . ENV_VAR_SOURCE_MAP_TYPE , Constants . ENV_VAR_SOURCE_MAP_TYPE . toLowerCase ( ) , Constants . SOURCE_MAP_TYPE_EXPENSIVE ) ;
8080 setProcessEnvVar ( Constants . ENV_VAR_SOURCE_MAP_TYPE , sourceMapTypeValue ) ;
8181
82- const tsConfigPathValue = getConfigValue ( context , '--tsconfig' , null , Constants . ENV_TS_CONFIG , Constants . ENV_TS_CONFIG . toLowerCase ( ) , join ( context . rootDir , 'tsconfig.json' ) ) ;
82+ const tsConfigPathValue = resolve ( getConfigValue ( context , '--tsconfig' , null , Constants . ENV_TS_CONFIG , Constants . ENV_TS_CONFIG . toLowerCase ( ) , join ( context . rootDir , 'tsconfig.json' ) ) ) ;
8383 setProcessEnvVar ( Constants . ENV_TS_CONFIG , tsConfigPathValue ) ;
8484
85- const appEntryPointPathValue = getConfigValue ( context , '--appEntryPoint' , null , Constants . ENV_APP_ENTRY_POINT , Constants . ENV_APP_ENTRY_POINT . toLowerCase ( ) , join ( context . srcDir , 'app' , 'main.ts' ) ) ;
85+ const appEntryPointPathValue = resolve ( getConfigValue ( context , '--appEntryPoint' , null , Constants . ENV_APP_ENTRY_POINT , Constants . ENV_APP_ENTRY_POINT . toLowerCase ( ) , join ( context . srcDir , 'app' , 'main.ts' ) ) ) ;
8686 setProcessEnvVar ( Constants . ENV_APP_ENTRY_POINT , appEntryPointPathValue ) ;
8787
8888 setProcessEnvVar ( Constants . ENV_GLOB_UTIL , join ( getProcessEnvVar ( Constants . ENV_VAR_APP_SCRIPTS_DIR ) , 'dist' , 'util' , 'glob-util.js' ) ) ;
0 commit comments