@kadena/hardhat-chainweb
Version:
Hardhat plugin for Kadena's Chainweb network
35 lines (34 loc) • 863 B
JSON
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"outDir": "lib",
"rootDir": "./src",
"forceConsistentCasingInFileNames": true,
"jsx": "react",
"declaration": true,
"sourceMap": true,
"declarationMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"strict": true,
"useUnknownInCatchVariables": false,
"esModuleInterop": true,
"noEmitOnError": false,
"allowUnreachableCode": false,
"target": "es2019",
"lib": ["es2019", "DOM"],
"skipLibCheck": true,
"allowJs": true,
"module": "commonjs",
"resolveJsonModule": true,
"types": [
"node",
"hardhat/types",
"hardhat/types/runtime",
"hardhat/config",
"mocha"
]
},
"include": ["./src/**/*", "./src/type.ts"],
"exclude": ["node_modules", "./lib/**/*"]
}