diff options
| author | Armand Philippot <git@armandphilippot.com> | 2022-03-24 21:43:44 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2022-03-24 21:43:44 +0100 |
| commit | 73131da73da41c64135ed4236bd84ddba6e0c149 (patch) | |
| tree | 6849f0d2884b103e432980330f866b995b7f5947 /tsconfig.json | |
| parent | 6b5c861eea12c67c4440d9e086513bd8b196c150 (diff) | |
| parent | 2de1ca173ee3d8e5886a1b3fdc4afbe102fad22f (diff) | |
build: configure Jest
Since Next.js v12, we can use next/js package with some
preconfigured Jest options.
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json index e110340..318ac6d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -23,8 +23,9 @@ "@pages/*": ["src/pages/*"], "@services/*": ["src/services/*"], "@styles/*": ["src/styles/*"], - "@utils/*": ["src/utils/*"], - "@ts/*": ["src/ts/*"] + "@test-utils": ["__tests__/utils/test-utils"], + "@ts/*": ["src/ts/*"], + "@utils/*": ["src/utils/*"] } }, "include": [ |
