mirror of
https://github.com/vocdoni/arbo.git
synced 2026-01-09 13:57:54 -05:00
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.
20 lines
389 B
JSON
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"
|
|
]
|
|
}
|