navio-blsct
Version:
TypeScript bindings for the `libblsct` library used by the [Navio](https://nav.io/) blockchain to construct confidential transactions based on the BLS12-381 curve.
17 lines (14 loc) • 335 B
JavaScript
const { createDefaultPreset } = require("ts-jest");
const tsJestTransformCfg = createDefaultPreset().transform;
/** @type {import("jest").Config} **/
module.exports = {
testEnvironment: "node",
testPathIgnorePatterns: [
'/node_modules/',
'/dist/',
'\\.d\\.ts$',
],
transform: {
...tsJestTransformCfg,
},
};