summaryrefslogtreecommitdiff
path: root/jest.config.ts
diff options
context:
space:
mode:
authorLi Zhineng <[email protected]>2025-07-23 17:35:38 +0800
committerLi Zhineng <[email protected]>2025-07-23 17:35:38 +0800
commit45d2b6ad1d490817edb98df933779b19753a2e48 (patch)
tree1fa187ae3f765753285f3587c928a6feec07e228 /jest.config.ts
downloadwave-45d2b6ad1d490817edb98df933779b19753a2e48.tar.gz
wave-45d2b6ad1d490817edb98df933779b19753a2e48.zip
first commit
Diffstat (limited to 'jest.config.ts')
-rw-r--r--jest.config.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/jest.config.ts b/jest.config.ts
new file mode 100644
index 0000000..1c6e6c1
--- /dev/null
+++ b/jest.config.ts
@@ -0,0 +1,8 @@
+import type { Config } from 'jest'
+
+const config: Config = {
+ preset: 'ts-jest',
+ roots: ['<rootDir>/src']
+}
+
+export default config