File tree Expand file tree Collapse file tree
3-import-alias/generated/src Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11// @ts -nocheck
2+ function blockErrorType < T > ( val : T ) : [ 0 ] extends [ ( 1 & T ) ] ? { } : T ;
23declare const styles = {
34 a_1 : '' as readonly string ,
45 a_2 : '' as readonly string ,
56 a_2 : '' as readonly string ,
67 a_3 : '' as readonly string ,
78 a_4 : '' as readonly string ,
8- ...( await import ( './b.module.css' ) ) . default ,
9+ ...blockErrorType ( ( await import ( './b.module.css' ) ) . default ) ,
910 c_1 : ( await import ( './c.module.css' ) ) . default . c_1 ,
1011 c_alias : ( await import ( './c.module.css' ) ) . default . c_2 ,
1112} ;
Original file line number Diff line number Diff line change 11// @ts -nocheck
2+ function blockErrorType < T > ( val : T ) : [ 0 ] extends [ ( 1 & T ) ] ? { } : T ;
23declare const styles = {
3- ...( await import ( '@/src/b.module.css' ) ) . default ,
4- ...( await import ( '#src/b.module.css' ) ) . default ,
4+ ...blockErrorType ( ( await import ( '@/src/b.module.css' ) ) . default ) ,
5+ ...blockErrorType ( ( await import ( '#src/b.module.css' ) ) . default ) ,
56} ;
67export default styles ;
You can’t perform that action at this time.
0 commit comments