mirror of
https://github.com/zama-ai/fhevm-solidity.git
synced 2026-01-09 20:47:56 -05:00
23 lines
609 B
JSON
23 lines
609 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["es2020"],
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"removeComments": true,
|
|
"resolveJsonModule": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"target": "es2020"
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"files": ["./hardhat.config.ts"],
|
|
"include": ["src/**/*", "tasks/**/*", "test/**/*", "deploy/**/*", "types/"]
|
|
}
|