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.package.json

24 lines
580 B

{
"compilerOptions": {
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": false,
"lib": ["es2015", "es5", "dom"],
"module": "commonjs",
"moduleResolution": "node",
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"preserveSymlinks": true,
"preserveWatchOutput": true,
"pretty": false,
"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
}
}