Files
common/tsconfig.json
Jaco Greeff f82092e603 Allow blake2 & parity-codec in trie (#251)
* Start codec implementation

* Expose all constants

* NodeHeader encoding/decoding

* Encoding in NodeHeader

* Constants for Node types

* Moce codec to trie-codec

* Encode/decode in place (untested)

* WIP, tests starting to be put in place

* One passing test :)

* Another test bites the dust...

* One more test down...

* One more down

* Additional tests

* Formatting

* Long keys passing

* Trie tests

* Follow the script, no all-in-all encoder

* First simple trie test passing

* Another one down

* Extra checks remove (debug)

* 80% there with tests...

* One more, one left

* Trie tests passing

* ISC -> Apache-2.0

* Add compact util functions

* Tests to TypeScript

* Remove @polkadot/types deps, ethereum stub

* Bump

* Genesis tests with chainspecs

* Cleanup tests (ease of debugging)

* Substrate test passes, branch fails (again)

* Checks passing, tests passing

* Re-add Ethereum & snapshot tests (not passing atm)

* Re-add index test (also not 100%)

* Mid-way in generic trie-root

* Cleanup ethereumjs-testing definitions

* Update deps

* Less intrusive renames in trie-hash

* Self-review cleanups #1

* asNibbles -> toNibbles

* Cleanups

* Expand tests

* Cleanup imports

* Fix logger test (fly-by refactor)

* Update snapshot test
2018-11-22 14:29:34 +01:00

22 lines
764 B
JSON

{
"extends": "./node_modules/@polkadot/dev/config/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@polkadot/chainspec/*": [ "packages/chainspec/src/*" ],
"@polkadot/db/*": [ "packages/db/src/*" ],
"@polkadot/keyring/*": [ "packages/keyring/src/*" ],
"@polkadot/trie-codec/*": [ "packages/trie-codec/src/*" ],
"@polkadot/trie-db/*": [ "packages/trie-db/src/*" ],
"@polkadot/trie-hash/*": [ "packages/trie-hash/src/*" ],
"@polkadot/util-crypto/*": [ "packages/util-crypto/src/*" ],
"@polkadot/util-rlp/*": [ "packages/util-rlp/src/*" ],
"@polkadot/util/*": [ "packages/util/src/*" ]
},
"typeRoots": [
"./node_modules/@polkadot/ts",
"./node_modules/@types"
]
}
}