Files
arbo/testvectors/circom/tsconfig.json
arnaucube a8c7ea9808 Add circom test w/ circuit for CircomVerifierProof
Add circom test with circuit for CircomVerifierProofs, which allows to
automatically check that the data generated from arbo matches the circom
circuit of a SMTVerifierProof.
Added also GHA workflow to test the circuits with the output of arbo
code.
2021-06-16 09:25:04 +02:00

20 lines
389 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"pretty": true,
"declaration": true,
"sourceMap": true,
"target": "es2017",
"outDir": "dist",
"baseUrl": "src"
},
"include": [
"test/**/*.ts"
],
"exclude": [
"node_modules"
]
}