Try adjusting core tsconfig (#2138)

Fixes `yarn build` failing on `main`

https://github.com/hyperlane-xyz/hyperlane-monorepo/actions/runs/4765379482/jobs/8471042324
asaj/ci-try
Yorke Rhodes 2 years ago committed by GitHub
parent f30666eea3
commit 60f7737a46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      solidity/tsconfig.json

@ -1,9 +1,8 @@
{
"compilerOptions": {
"outDir": "./dist/",
"rootDir": "./types/"
"outDir": "./dist",
"rootDir": "./types"
},
"exclude": ["./node_modules/", "./dist/", "./types/hardhat.d.ts"],
"extends": "../tsconfig.json",
"include": ["./types/**/*.ts"]
"exclude": ["./test", "hardhat.config.ts", "./dist"],
"extends": "../tsconfig.json"
}
Loading…
Cancel
Save