mirror of
https://github.com/nix-community/noogle.git
synced 2024-11-22 14:45:15 +03:00
d9f579cf44
* refactor to include all necessary dependencies directly here * move indexer into monorepo * add snapshot tests and seperate sub.project for builtin types * add more missing builtins such as fromTOML
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;
|