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 badges2 Answers
Reset to default 13I 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条)