Files
circomkit/tsconfig.json
Erhan f210e06030 Major Refactors (#82)
* 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
2024-05-18 22:02:47 +03:00

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"]
}