As I type something similar to
const func = myFuncti..;
The suggestion will be for myFunction()
, which I confirm.
Then, the import statement appears as
import {myFunction} from '../myFunction.ts`;
I aim to remove the 'ts' extension, resulting in
import {myFunction} from '../myFunction`;
Any suggestions on how to achieve this?