absszero / vscode-laravel-goto

Go to various Laravel files
MIT License
13 stars 4 forks source link

react/typescript configurations #46

Closed agelospanagiotakis closed 2 days ago

agelospanagiotakis commented 2 weeks ago

i think it should take into account .tsx files for react/typescript configurations

for example

 return Inertia::render(component: 'admin/users/role', [
... 
]

should link to resources/js/pages/admin/users/role.tsx

absszero commented 1 week ago

Currently, when named parameters are not used, for example:

return Inertia::render('admin/users/role')

The tool is able to assist with navigating to the corresponding admin/users/role file through fuzzy search (regardless of the file extension).

I will work on support for cases where named parameters are used, like in your example. thank you.