livescript-jest
v0.2.0
Published
A preprocessor to help use LiveScript with Jest
Maintainers
Readme
livescript-jest
Simple LiveScript Preprocessor for Jest
Installation:
Install with npm or yarn:
npm i livescript-jest
# or
yarn add livescript-jestUsage:
In your package.json or jest.config.json specify ".ls" files preprocessor:
"jest": {
"transform": {
"^.+\\.ls$": "livescript-jest",
},
"moduleFileExtensions": [
"ls",
]
}