mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 04:46:20 +00:00
19 lines
313 B
TypeScript
19 lines
313 B
TypeScript
|
import { HardhatUserConfig } from 'hardhat/config';
|
||
|
import '@nomiclabs/hardhat-waffle';
|
||
|
|
||
|
const config: HardhatUserConfig = {
|
||
|
defaultNetwork: 'localhost',
|
||
|
solidity: {
|
||
|
compilers: [
|
||
|
{
|
||
|
version: '0.7.6'
|
||
|
}
|
||
|
]
|
||
|
},
|
||
|
paths: {
|
||
|
sources: './test/contracts'
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default config;
|