Skip to content

Instantly share code, notes, and snippets.

@kamilogorek
Last active December 8, 2024 08:47
Show Gist options
  • Save kamilogorek/d257c464bf1dd7e20184100a068df0a7 to your computer and use it in GitHub Desktop.
Save kamilogorek/d257c464bf1dd7e20184100a068df0a7 to your computer and use it in GitHub Desktop.
// 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