We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d432ba commit c7d39caCopy full SHA for c7d39ca
jest.config.js
@@ -0,0 +1,12 @@
1
+const config = {
2
+ testEnvironment: 'node',
3
+ collectCoverage: true,
4
+ transform: {
5
+ '^.+\\.tsx?$': 'ts-jest'
6
+ },
7
+ testPathIgnorePatterns: [
8
+ '/node_modules/'
9
+ ]
10
+};
11
+
12
+module.exports = config;
package.json
@@ -73,16 +73,6 @@
73
"typescript": "^5.0.4"
74
},
75
"types": "typings/index.d.ts",
76
- "jest": {
77
- "testEnvironment": "node",
78
- "collectCoverage": true,
79
- "transform": {
80
- "^.+\\.tsx?$": "ts-jest"
81
- },
82
- "testPathIgnorePatterns": [
83
- "/node_modules/"
84
- ]
85
86
"engines": {
87
"node": ">=16"
88
0 commit comments