circuits: move sdk files to package.json

This commit is contained in:
Saleel
2024-04-03 20:12:02 +05:30
parent 6fa7dfc47e
commit 9ac384097e
2 changed files with 22 additions and 2 deletions

View File

@@ -1,2 +0,0 @@
tests/*
babel.config.js

View File

@@ -19,5 +19,27 @@
"circomlibjs": "^0.1.7",
"jest": "^29.5.0",
"typescript": "^5.2.2"
},
"files": [
"/helpers",
"/lib",
"/utils",
"./email-verifier.circom"
],
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "current"
}
}
],
"@babel/preset-typescript",
[
"jest"
]
]
}
}