1
0
mirror of https://github.com/actions/labeler synced 2026-05-10 00:51:02 +02:00
This commit is contained in:
David Kale
2020-09-08 13:25:36 -04:00
parent e4246d2b5b
commit 91fcbb0108
4227 changed files with 416837 additions and 457884 deletions

4
node_modules/babel-jest/README.md generated vendored
View File

@@ -16,10 +16,10 @@ If you would like to write your own preprocessor, uninstall and delete babel-jes
_Note: this step is only required if you are using `babel-jest` with additional code preprocessors._
To explicitly define `babel-jest` as a transformer for your JavaScript code, map _.js_ files to the `babel-jest` module.
To explicitly define `babel-jest` as a transformer for your JavaScript code, map _.js_ files to the `babel-jest` module. Typescript files are also supported.
```json
"transform": {
"^.+\\.jsx?$": "babel-jest"
"^.+\\.[t|j]sx?$": "babel-jest"
},
```