Redo 1099-B to be simplerf for recording adjustments.
[ustaxlib.git] / jest.config.js
1 // Copyright 2020 Blue Static <https://www.bluestatic.org>
2 // This program is free software licensed under the GNU General Public License,
3 // version 3.0. The full text of the license can be found in LICENSE.txt.
4 // SPDX-License-Identifier: GPL-3.0-only
5
6 module.exports = {
7 preset: 'ts-jest',
8 testEnvironment: 'node',
9 collectCoverage: true,
10 collectCoverageFrom: [
11 '**/*.ts',
12 '!dist/**/*'
13 ],
14 testPathIgnorePatterns: [
15 '/node_modules/',
16 '/dist/'
17 ]
18 };