UNPKG
@iocium/ioc-diff
Version:
latest (1.0.3)
1.0.3
1.0.2
A full-featured, ESM-compatible IOC diffing and normalization library + CLI for InfoSec tooling.
@iocium/ioc-diff
/
jest.config.js
12 lines
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
export
default
{
preset
:
'ts-jest/presets/default-esm'
,
testEnvironment
:
'node'
,
transform
: {
'^.+\\.ts$'
: [
'ts-jest'
, {
useESM
:
true
}] },
extensionsToTreatAsEsm
: [
'.ts'
],
coveragePathIgnorePatterns
: [
'/node_modules/'
,
'/tests/helpers/'
] };