mirror of
https://github.com/0xShay/ticketchain.git
synced 2026-01-11 13:13:25 +00:00
15 lines
332 B
TypeScript
15 lines
332 B
TypeScript
import { HardhatUserConfig } from "hardhat/config";
|
|
import "@nomicfoundation/hardhat-toolbox";
|
|
import "@nomiclabs/hardhat-ethers";
|
|
|
|
const config: HardhatUserConfig = {
|
|
solidity: "0.8.19",
|
|
paths: {
|
|
sources: "./contracts",
|
|
tests: "./test",
|
|
cache: "./cache",
|
|
artifacts: "./artifacts"
|
|
},
|
|
};
|
|
|
|
export default config; |