Rename FormW2 to just W2.
[ustaxlib.git] / jest.config.js
1 module.exports = {
2 preset: 'ts-jest',
3 testEnvironment: 'node',
4 collectCoverage: true,
5 collectCoverageFrom: [
6 '**/*.ts',
7 '!dist/**/*'
8 ],
9 testPathIgnorePatterns: [
10 '/node_modules/',
11 '/dist/'
12 ]
13 };