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;