Last active
December 8, 2024 08:47
-
-
Save kamilogorek/d257c464bf1dd7e20184100a068df0a7 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// npx jscodeshift --parser=ts add-import-extensions.js src/ | |
module.exports = function(fileInfo, api) { | |
const j = api.jscodeshift; | |
const root = j(fileInfo.source); | |
root.find(j.ImportDeclaration).forEach(path => { | |
const source = path.value.source; | |
if (source.value.startsWith('.') && !source.value.endsWith('.js')) { | |
source.value += '.js'; | |
} | |
}); | |
return root.toSource(); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment