I want to add .ts in every file using find and replace in vscode.
for example, import some from 'module' to import some from 'module.ts'.
What the correct regex and the replacement todo that? I try this regex but i'm not sure how to do the replace...
import(?:["'\s]*([\w*{}\n\r\t, ]+))from\s*?(["'\s].*([@\w/_-]+)(["'\s].*))