support plugins section from compilerOptions
See original GitHub issue🚀 Feature Proposal
If you use ttypescript, you can define plugins
section in compilerOptions
It would be great to make it visible in ts-jest
Motivation
do not duplicate plugins in tsconfig.json and jest.config.js
Example
Issue Analytics
- State:
- Created 3 years ago
- Comments:8
Top Results From Across the Web
plugins - TSConfig Option - TypeScript
TSConfig. plugins. Customize. Site Colours: ... Community. Get Help · Blog · GitHub Repo · Community Chat · @TypeScript · Stack Overflow ·...
Read more >Support new compiler options of TS 4.5+ - `nodenext ... - GitHub
So the proposed fix for the Rollup TS plugin while the peer dependency remains at >= 3.7.0 for TS is to add in...
Read more >compilerOptions.paths must not be set (alias imports are not ...
when I compile my project in VS Code, it removes the paths entry from tsconfig.json with the following message. Why alias imports are...
Read more >jsconfig.json Reference - Visual Studio Code
Below are jsconfig "compilerOptions" to configure the JavaScript language support. Tip: Do not be confused by compilerOptions , since no actual compilation is ......
Read more >Angular compiler options
Like the TypeScript compiler, the Angular AOT compiler also supports extends in the angularCompilerOptions section of the TypeScript configuration file.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Yes I think
ttypescript
picked something uniquely and not used by TypeScript team so they can avoid conflict.The current documentation is showing new config, which was introduced in https://github.com/kulshekhar/ts-jest/pull/1831, that is why it was different comparing to 24.3.0.
The setting in 24.3.0 is still working with current version but is deprecated and will be removed in v27.
https://github.com/kulshekhar/ts-jest/blob/v26.1.4/docs/user/config/astTransformers.md
You cannot pass option to directly to transformer but you can use
ConfigSet
as an input.ConfigSet
representsts-jest
config. You can check the example ofhoist-jest
orREADME
which is linked in online documentation