Is there an existing issue that is already proposing this?
Is your feature request related to a problem? Please describe it
I want to see the initial project created by running nest new project-name --strict with proper file structure for config files. One of the files is the Jest config.
Describe the solution you'd like
Remove config from package.json and move it to a propriate Jest config file (I personally use jest.config.ts).
Teachability, documentation, adoption, migration strategy
No response
What is the motivation / use case for changing the behavior?
This is one of the first things I do when creating a new project since I prefer keeping config files outside of the package.json file. I also inherit the typescript template for Jest to remove copy-pasted code for transforms of .ts files.
Is there an existing issue that is already proposing this?
Is your feature request related to a problem? Please describe it
I want to see the initial project created by running
nest new project-name --strictwith proper file structure for config files. One of the files is the Jest config.Describe the solution you'd like
Remove config from
package.jsonand move it to a propriate Jest config file (I personally usejest.config.ts).Teachability, documentation, adoption, migration strategy
No response
What is the motivation / use case for changing the behavior?
This is one of the first things I do when creating a new project since I prefer keeping config files outside of the package.json file. I also inherit the typescript template for Jest to remove copy-pasted code for transforms of
.tsfiles.