16
1
mirror of https://github.com/cerc-io/watcher-ts synced 2025-03-11 13:49:22 +00:00
watcher-ts/packages/lighthouse-watcher/hardhat.config.ts

15 lines
287 B
TypeScript
Raw Normal View History

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;