javascript - Force the auto import to use ".js" extension in TypeScript Visual Studio Code Editor - Stack Over

The auto-import pletion feature sometimes adds the .js extension, but not all the time. However, withou

The auto-import pletion feature sometimes adds the .js extension, but not all the time. However, without the extension in the TypeScript source, the tsc piler won't add the extension to the emitted JavaScript file which can create run-time issues such as module not found error.

For details of the problem please refer to: Appending .js extension on relative import statements during Typescript pilation (ES6 modules).

The question is: is there any way to configure the automatic import pletion feature to force to append the.js extension in the import statements? Or are there any add-ons or VS Code extensions that can achieve this?

This minor thing has been extremely annoying at times!

The auto-import pletion feature sometimes adds the .js extension, but not all the time. However, without the extension in the TypeScript source, the tsc piler won't add the extension to the emitted JavaScript file which can create run-time issues such as module not found error.

For details of the problem please refer to: Appending .js extension on relative import statements during Typescript pilation (ES6 modules).

The question is: is there any way to configure the automatic import pletion feature to force to append the.js extension in the import statements? Or are there any add-ons or VS Code extensions that can achieve this?

This minor thing has been extremely annoying at times!

Share Improve this question asked Oct 8, 2020 at 21:29 user3330840user3330840 7,40911 gold badges31 silver badges42 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 13

I found that now the VSCode has it in the Preferences or Settings Ctrl + , under the entry: "typescript.preferences.importModuleSpecifierEnding": "js",.

Sublime Text version

Install package "LSP-typescript". Click Preferences -> Package Settings -> LSP -> Servers -> LSP-typescript. Add following json

{
  "initializationOptions": {
    "preferences": {
      "importModuleSpecifierEnding": "js"
    }
  }
}

Or use this in tsconfig

{
  "pilerOptions": {
    "moduleResolution": "nodenext", // <- Necessary to get imports with .js
  },
  "exclude": ["node_modules"]
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743647652a4484030.html

相关推荐

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信