mirror of
https://github.com/harttle/liquidjs.git
synced 2026-09-12 19:00:39 -07:00
11 lines
222 B
JavaScript
11 lines
222 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
maxWorkers: '50%',
|
|
testEnvironment: 'node',
|
|
testMatch: ['**/*.spec.ts'],
|
|
collectCoverageFrom: [
|
|
'src/**/*.ts'
|
|
]
|
|
}
|