Skip to content

chimurai/jscodeshift-typescript-example

Repository files navigation

jscodeshift-typescript-example

TypeScript all the way πŸš€

Example usage of jscodeshift for TypeScript with TypeScript:

  • TypeScript target files *.ts
  • TypeScript transformer
  • TypeScript test files
  • TypeScript fixtures

TypeScript transformer

Strongly typed code and code completion with @types/jscodeshift

code-completion

Installation

npm i

or

yarn

Run codemod

npx jscodeshift -t ./examples/simple-rename.ts --extensions=ts --parser=ts './**/*.ts' --print --dry

Omit --dry to write the transformed source back to disk.

Test

npm test

or

yarn test

Debug

Use the pre-configured VSCode launcher to run tests and debug your transformer.

debugger

Vibe Code Your jscodeshift Codemod πŸ€–

With .github/copilot-instructions.md you can vibe code a new jscodeshift codemod.

Example prompt to create a new transform with tests:

Create a new transform to add a post-fix "funny" to class name

before:
class Foo {}

after:
class FooFunny {}

Behind the scenes

Use @babel/parser in https://astexplorer.net when working with the jscodeshift's default parser (default: babel).

Resources & Inspiration

Awesome lists

About

jscodeshift typescript codemod example

Topics

Resources

License

Stars

Watchers

Forks

Contributors 4

  •  
  •  
  •  
  •