mirror of
https://github.com/CryptKeeperZK/semaphore.git
synced 2026-01-09 15:37:57 -05:00
16 lines
466 B
JSON
16 lines
466 B
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "Node",
|
|
"noImplicitAny": true,
|
|
"resolveJsonModule": true,
|
|
"target": "ES2018",
|
|
"module": "CommonJS",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "dist",
|
|
"typeRoots": ["node_modules/@types", "types"]
|
|
},
|
|
"include": ["scripts/**/*", "tasks/**/*", "test/**/*", "build/typechain/**/*", "types/**/*"],
|
|
"files": ["hardhat.config.ts"]
|
|
}
|