UNPKG

o1js-email-verify

Version:

Implemented using [o1js](https://github.com/o1-labs/o1js), this project is a reimplementation of [zk-email](https://github.com/zkemail/zk-email-verify), leveraging the Mina proving system [Kimchi](https://o1-labs.github.io/proof-systems/specs/kimchi.html#

25 lines (24 loc) 596 B
/** @type {import('@ts-jest/dist/types').InitialOptionsTsJest} */ export default { verbose: true, preset: 'ts-jest/presets/default-esm', testEnvironment: 'node', globals: { 'ts-jest': { useESM: true, }, }, testTimeout: 1_000_000, transform: { '^.+\\.(t)s$': 'ts-jest', '^.+\\.(j)s$': 'babel-jest', }, resolver: '<rootDir>/jest-resolver.cjs', transformIgnorePatterns: [ '<rootDir>/node_modules/(?!(tslib|o1js/node_modules/tslib))', ], modulePathIgnorePatterns: ['<rootDir>/build/'], moduleNameMapper: { '^(\\.{1,2}/.+)\\.js$': '$1', }, };