UNPKG

271 BJavaScriptView Raw
1const config = {
2 preset: "ts-jest",
3 testEnvironment: "node",
4 verbose: true,
5 roots: [
6 "<rootDir>/test"
7 ],
8 testMatch: [
9 "**/?(*.)+(test.ts)"
10 ],
11 transform: {
12 "^.+\\.(ts)$": "ts-jest"
13 },
14};
15
16module.exports = config;
\No newline at end of file