12 lines
241 B
JavaScript
12 lines
241 B
JavaScript
// SPDX-FileCopyrightText: 2021 Johannes Loher
|
|
//
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
module.exports = {
|
|
preset: "ts-jest",
|
|
globals: {
|
|
"ts-jest": {
|
|
tsconfig: "<rootDir>/spec/tsconfig.spec.json",
|
|
},
|
|
},
|
|
};
|