mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-25 05:39:07 +03:00
11 lines
158 B
JavaScript
11 lines
158 B
JavaScript
|
/** @type {import('jest').Config} */
|
||
|
|
||
|
import { defaults } from "jest-config";
|
||
|
|
||
|
const config = {
|
||
|
...defaults,
|
||
|
// transform: {},
|
||
|
};
|
||
|
|
||
|
export default config;
|