UNPKG
livescript-jest
Version:
latest (0.2.0)
0.2.0
0.1.0
A preprocessor to help use LiveScript with Jest
github.com/kolotaev/livescript-jest
livescript-jest
/
jest.config.js
16 lines
(15 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module
.
exports
= { moduleFileExtensions: [
'js'
,
'ls'
, ], transform: {
'^.+\\.spec.ls$'
:
'./index.js'
, }, transformIgnorePatterns: [
'/node_modules/'
], testMatch: [
'**/*.spec.(js|jsx|ts|tsx|ls)'
], }