When I type something like
const func = myFuncti..;
It will suggest myFunction()
, and I accept that.
Afterward the import will be like
import {myFunction} from '../myFunction.ts`;
I want to get rid of the ts, so it bees
import {myFunction} from '../myFunction`;
How to do it?
When I type something like
const func = myFuncti..;
It will suggest myFunction()
, and I accept that.
Afterward the import will be like
import {myFunction} from '../myFunction.ts`;
I want to get rid of the ts, so it bees
import {myFunction} from '../myFunction`;
How to do it?
Share Improve this question asked Sep 29, 2023 at 17:26 CCCCCCCC 6,50110 gold badges61 silver badges144 bronze badges 2- Read the docs here: jetbrains./help/idea/… – k.tten Commented Sep 29, 2023 at 17:50
- just as an FYI, depending on how you setup your project, if you're heading towards the ESM module paradigm of imports, and not using monjs, then technically the imports are supposed to be explicit, including the file extensions. Not having file extensions is something unique to the monjs / older node way of doing it. – 1mike12 Commented Feb 11 at 16:17
2 Answers
Reset to default 10Turns out it's a problem of tsconfig.json
After changing allowImportingTsExtensions
to false
, problem solved.
In Settings | Editor | Code Style | TypeScript | Imports, try setting the Use file extension: to Never