@@ -56,8 +56,8 @@ async fn disabled() {
5656 ( f. join ( "app" ) , "@/index.ts" , Ok ( f. join ( "app/aliased/index.ts" ) ) ) ,
5757 ( f. join ( "app" ) , "@/../index.ts" , Ok ( f. join ( "app/index.ts" ) ) ) ,
5858 // Test project reference
59- ( f. join ( "project_a" ) , "@/index.ts" , Err ( ResolveError :: NotFound ( "@/ index.ts". into ( ) ) ) ) ,
60- ( f. join ( "project_b/src" ) , "@/index.ts" , Err ( ResolveError :: NotFound ( "@/ index.ts". into ( ) ) ) ) ,
59+ ( f. join ( "project_a" ) , "@/index.ts" , Ok ( f . join ( "app/aliased/ index.ts") ) ) ,
60+ ( f. join ( "project_b/src" ) , "@/index.ts" , Ok ( f . join ( "app/aliased/ index.ts") ) ) ,
6161 // Does not have paths alias
6262 ( f. join ( "project_a" ) , "./index.ts" , Ok ( f. join ( "project_a/index.ts" ) ) ) ,
6363 ( f. join ( "project_c" ) , "./index.ts" , Ok ( f. join ( "project_c/index.ts" ) ) ) ,
@@ -88,7 +88,7 @@ async fn manual() {
8888 ( f. join ( "app" ) , "@/../index.ts" , Ok ( f. join ( "app/index.ts" ) ) ) ,
8989 // Test project reference
9090 ( f. join ( "project_a" ) , "@/index.ts" , Ok ( f. join ( "project_a/aliased/index.ts" ) ) ) ,
91- ( f. join ( "project_b/src" ) , "@/index.ts" , Err ( ResolveError :: NotFound ( "@/ index.ts". into ( ) ) ) ) ,
91+ ( f. join ( "project_b/src" ) , "@/index.ts" , Ok ( f . join ( "app/aliased/ index.ts") ) ) ,
9292 // Does not have paths alias
9393 ( f. join ( "project_a" ) , "./index.ts" , Ok ( f. join ( "project_a/index.ts" ) ) ) ,
9494 ( f. join ( "project_c" ) , "./index.ts" , Ok ( f. join ( "project_c/index.ts" ) ) ) ,
0 commit comments