1.0.6 • Published 7 years ago

typescript-babel-jest v1.0.6

Weekly downloads
3,636
License
MIT
Repository
github
Last release
7 years ago

STATUS: DEPRECATED AND UNMAINTAINED

This solution is outdated and not optimal. If you are using this package, I recommend replacing it with ts-jest.

typescript-babel-jest

Build Status npm version

Preprocessor for typescript projects in which the tsconfig.json is similar to that:

{
    "compilerOptions": {
        "target": "ES6",
        "module": "ES6"
    }
}

Usage

To use this in your project, run:

npm i typescript-babel-jest -D

Modify your project's package.json so that the jest section looks something like:

{
    "scripts": {
        "test": "jest --no-cache"
    },
    "jest": {
        "transform": {
            "^.+\\.(ts|tsx)$": "typescript-babel-jest"
        },
        "moduleFileExtensions": ["ts", "tsx", "js"],
        "testRegex": "/__tests__/.*\\.test\\.(ts|tsx)$"
    }
}

Just run npm test, enjoy!

Quick start to run tests (only if you're working on this package)

git clone https://github.com/lozinsky/typescript-babel-jest.git
cd typescript-babel-jest
npm i
npm test
1.0.6

7 years ago

1.0.5

9 years ago

1.0.4

9 years ago

1.0.3

9 years ago

1.0.2

9 years ago

1.0.1

9 years ago

0.1.8

9 years ago

0.1.7

10 years ago

0.1.6

10 years ago

0.1.5

10 years ago

0.1.4

10 years ago

0.1.3

10 years ago

0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

1.0.0

10 years ago