mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-06-17 05:50:12 -06:00
10 lines
219 B
JavaScript
10 lines
219 B
JavaScript
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
testPathIgnorePatterns: [
|
|
'<rootDir>/dist/',
|
|
'<rootDir>/node_modules/'
|
|
]
|
|
}
|