oxen-electron-gui-wallet/jsconfig.json
Mikunj Varsani 2eb941518c
LNS (#127)
* Add UI for lns.

* Fix watch handlers

* Made lns purchase a component.

* Add config for vscode intellisense

* Add fetching of LNS Records

* Add owner field

* Update LNS logic to use correct rpc calls.

Turns out we never send the `name` to the rpc, instead we send `name_hash` and from that we can correctly decrypt `encrypted_value`.

* Add lns record display

* Map request_index to owner

* Add viewing record details.
Refactor.

* Add decrypt ui

* Minor fix

* Added name and value decryption

* Cleanup.
Don't show records which don't belong to us.

* Refactor
2020-04-07 12:56:15 +10:00

16 lines
380 B
JSON

{
"compilerOptions": {
"target": "es6",
"baseUrl": ".",
"paths": {
"src/*": ["./src/*"],
"app/*": ["./*"],
"components/*": ["./src/components/*"],
"layouts/*": ["./src/layouts/*"],
"pages/*": ["./src/pages/*"],
"statics/*": ["./src/statics/*"]
}
},
"exclude": ["node_modules", "dist", ".quasar", "downloads", ".vscode"]
}