mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 04:46:20 +00:00
15 lines
287 B
TypeScript
15 lines
287 B
TypeScript
|
import { HardhatUserConfig } from 'hardhat/config';
|
||
|
|
||
|
import './tasks/lighthouse-deploy';
|
||
|
import './tasks/lighthouse-store';
|
||
|
|
||
|
const config: HardhatUserConfig = {
|
||
|
defaultNetwork: 'localhost',
|
||
|
solidity: '0.7.3',
|
||
|
paths: {
|
||
|
sources: './test/contracts'
|
||
|
}
|
||
|
};
|
||
|
|
||
|
export default config;
|