mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-15 04:10:40 -07:00
10 lines
201 B
JavaScript
10 lines
201 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/*.spec.ts'],
|
|
collectCoverageFrom: [
|
|
'src/**/*.ts'
|
|
]
|
|
}
|