Files
hub-monorepo/packages/utils/tsconfig.json
Paul Fletcher-Hill b5a7e090c8 chore: @hub/js package initial commit and move more code to @hub/utils (#393)
* intermediate commit

* feat: introduce MessageBuilder

* extract model constructors into stateless fns

* replace hexlify and arrayify

* feat: introduce utils/ed25519

* refactor: use classes for signer objects

* rebase misc-utils

* use privateKey in MessageBuilder

* move validations to utils and add toJson methods

* update eip712 signer to accept generic TypedDataSigner rather than just ethers wallet

* add WrappedMessage v1

* wait to merge message-builder files until later branch

Co-authored-by: Tony D'Addeo <amdaddeo@gmail.com>
2023-01-08 10:57:21 -05:00

13 lines
278 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"declaration": true,
"baseUrl": "./src",
"outDir": "build",
"rootDir": "src",
"isolatedModules": true
},
"include": ["src/index.ts"],
"exclude": ["build", "node_modules", "jest.config.ts"]
}