The home for Hyperlane core contracts, sdk packages, and other infrastructure
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hyperlane-monorepo/tsconfig.json

25 lines
621 B

{
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": false,
Helloworld kathy infra (#636) * Alpha7 * Checker * Move AbacusCoreChecker to deploy * Transfer ownership of Router in RouterDeployer (#546) * Transfer ownership of Router in RouterDeployer * Improve router config/deploy/init (#557) * Add default initialize to Router * Remove proxies from router framework Co-authored-by: yorhodes <yorke@useabacus.network> * Update router tests for initialization * Move libs to contracts dir * Publish alpha12 * Publish beta1 * Small adjustments * Fix lint * Add newlines to package json * Publish beta3 * Add hello world commands to infra * Make hello world artifacts consistent with infra * Add back helloworld after merge * Fix kathy scripts for 0.2.2 Hoist resolveJsonModule ts config to root * Run prettier * Cleanup tsconfig trailing commas * initial dockerfile * Update and cleanup Ethers.JS Dependencies (#510) - Update all deps to latest ethers.js and remove redundancies - Replace celo-ethers-provider dep with celo-ethers-wrapper * Update yarn.lock * rm old scripts * Override GCP secrets with env vars, some initial infra * log errors * Replace celo-ethers-wrapper with new celo-ethers-provider lib * Use recomemnded alfajores forno url * Helloworld-kathy tooling * Config stuff * monorepo docker image ci * Bump patch versions * Make infra private (for now) * Stash deployment artifacts * Fix prettier * Add ethereum partial deployment * Add helloworld git submodule * Ensure contracts are connected at end of deploy * Updates for hello world * Add submodule status config * Update submodule to branch * Add post-merge git hook for submodule init update * Try post checkout hook * Make post-checkout executable * Update submodule without yarn.lock * Add remote flag to git submodule update * Update submodule again * Adjust post checkout hook * Add submodules true to github actions checkout * Move helloworld mod to main * Fix github actions checkout submodules * Add submodules true for yarn build step * fix kathy * nit name * try rm submodule? * rm submodule bit in husky post-checkout * Try again * no need to try catch * buildin * Getting rid of unintentional changes * Clean up a lil * Config * fix build .... * better dockerfile * Cleanin * nearly there * one step closer * agh * Gracefully handle errors * Don't hardcode gas * Final schedules * rm accidental submodule * Add comments describing env var overriding * Cleaning up * Avoid race cond * 0.2.4 * PR comments * New kathy img * Allow CHAINS_TO_SKIP to be an empty str * upgrade kathy img * once every hour * once every 2 hrs actually Co-authored-by: nambrot <nambrot@googlemail.com> Co-authored-by: yorhodes <yorke@useabacus.network> Co-authored-by: J M Rossy <jm.rossy@gmail.com>
2 years ago
"lib": ["es2015", "es5", "dom", "es2021"],
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"preserveSymlinks": true,
"preserveWatchOutput": true,
"pretty": false,
"resolveJsonModule": true,
"sourceMap": true,
feat/refactor: Multi-Provider improvements (#842) * refactor: instantiate OpticsMessage with event instead of transaction receipt * refactor: take event AND transaction receipt; add convenience getters * Move sendCoins to examples folder * Remove unused functions from contracts * Add mustGetReplica * feat: MultiEvents class * feat: events function * Add comments for confirmAt * Add enum for MessageStatus * refactor: remove MultiEvent class * fix: return only successfully parsed bridge messages * nit: import * refactor: get functions * cache events to OpticsMessage * feat: implement RichEvents * Add allTransactionLogs to RichEvent * final polish refactor: make event queries rely on ethers type system refactor: generic Annotated type refactor: improve event cache in Optics message refactor: non-looping array concat refactor: use Annotated events for message instantiation refactor: add concurrency limit to paginated event retrieval refactor: break up annotate and rely on event.getTransactionReceipt refactor: use annotated lifecycle events throughout refactor: break out events into a folder bug: check for id, not domain bug: check for id, not domain (again) bug: check for id, not domain (again) Revert "bug: check for id, not domain (again)" This reverts commit 8304985814bed4b254082187ff8d303b5b517c4c. bug: pass through signer in fromObject bug: improper fromObject checking re: domain refactor: break trace out into its own package remove .env * fix: remove tsbuildinfo * fix: add additional context to optics message event Co-authored-by: James Prestwich <james@prestwi.ch>
3 years ago
"target": "es6",
"strict": true
}
}