We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2edf06f commit c88fe91Copy full SHA for c88fe91
2 files changed
package.json
@@ -5,9 +5,9 @@
5
"type": "module",
6
"scripts": {
7
"dev": "vite",
8
- "build": "tsc -b && vite build",
9
- "lint": "eslint .",
10
- "preview": "vite preview"
+ "build": "vite build",
+ "preview": "vite preview",
+ "test": "eslint"
11
},
12
"main": "index.html",
13
"dependencies": {
src/LBRY.tsx
@@ -1,4 +1,4 @@
1
-async function rpc(method: string,params?: object): Promise<any>{
+async function rpc(method: string,params?: object): Promise<object>{
2
return await (await fetch(import.meta.env.VITE_DEFAULT_DAEMON, {
3
method: 'POST',
4
// headers: {
0 commit comments