admin管理员组文章数量:1344578
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
本文标签: javascriptIntellijhow to get rid of extension when autoimportStack Overflow
版权声明:本文标题:javascript - Intellij - how to get rid of extension when auto-import - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743743177a2531270.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论