@@ -79,10 +79,10 @@ export function generateContext(context?: BuildContext): BuildContext {
79
79
const sourceMapTypeValue = getConfigValue ( context , '--sourceMapType' , null , Constants . ENV_VAR_SOURCE_MAP_TYPE , Constants . ENV_VAR_SOURCE_MAP_TYPE . toLowerCase ( ) , Constants . SOURCE_MAP_TYPE_EXPENSIVE ) ;
80
80
setProcessEnvVar ( Constants . ENV_VAR_SOURCE_MAP_TYPE , sourceMapTypeValue ) ;
81
81
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' ) ) ) ;
83
83
setProcessEnvVar ( Constants . ENV_TS_CONFIG , tsConfigPathValue ) ;
84
84
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' ) ) ) ;
86
86
setProcessEnvVar ( Constants . ENV_APP_ENTRY_POINT , appEntryPointPathValue ) ;
87
87
88
88
setProcessEnvVar ( Constants . ENV_GLOB_UTIL , join ( getProcessEnvVar ( Constants . ENV_VAR_APP_SCRIPTS_DIR ) , 'dist' , 'util' , 'glob-util.js' ) ) ;
0 commit comments