mirror of
https://github.com/erhant/circomkit.git
synced 2026-05-05 03:00:37 -04:00
* migrate tests under their own folder * more refactors + `pkgroll` added * todo commander * migrate CLI to `commander` * fixed proof tester types * added `list` command * use jest, use pnpm, more refactors & renames & typings * remove redundant hardhats, better jest * up version
22 lines
545 B
JSON
22 lines
545 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitOverride": true,
|
|
"esModuleInterop": true,
|
|
"pretty": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"types": ["jest", "node"],
|
|
// to be used with bundler: pkgroll
|
|
"moduleResolution": "Bundler",
|
|
"module": "Preserve",
|
|
"target": "ES6"
|
|
},
|
|
"files": ["./hardhat.config.ts"],
|
|
"include": ["src/**/*.*", "tests/**/*.*"],
|
|
"exclude": ["node_modules"]
|
|
}
|