We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae815e2 commit 512f557Copy full SHA for 512f557
1 file changed
jest.config.ts jest.config.ctsjest.config.ts renamed to jest.config.cts
@@ -1,4 +1,6 @@
1
-export default {
+import type { Config } from 'jest';
2
+
3
+const config: Config = {
4
preset: 'ts-jest',
5
testEnvironment: 'node',
6
roots: ['<rootDir>'],
@@ -13,3 +15,5 @@ export default {
13
15
'^(\\.\\.?\\/.+)\\.js$': '$1',
14
16
},
17
};
18
19
+export = config;
0 commit comments