fix: build and deploymen

This commit is contained in:
Danish Arora 2024-10-29 16:01:20 +05:30
parent 6ac81de93c
commit b7b6672196
No known key found for this signature in database
GPG Key ID: 1C6EF37CDAE1426E
4 changed files with 18 additions and 4 deletions

View File

@ -26,7 +26,12 @@
"@/*": [
"./src/*"
]
}
},
/* Add these options */
"esModuleInterop": true,
"resolveJsonModule": true,
"allowJs": true
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]

View File

@ -1 +1 @@
{"root":["./src/app.tsx","./src/env.ts","./src/main.tsx","./src/vite-env.d.ts","./src/components/header.tsx","./src/components/chain/creation/chaincreationform.tsx","./src/components/chain/preview/chainpreview.tsx","./src/components/ui/button.tsx","./src/components/ui/card.tsx","./src/components/ui/input.tsx","./src/components/ui/label.tsx","./src/components/ui/textarea.tsx","./src/lib/utils.ts"],"errors":true,"version":"5.6.3"}
{"root":["./src/app.tsx","./src/env.ts","./src/main.tsx","./src/vite-env.d.ts","./src/components/header.tsx","./src/components/qrcode.tsx","./src/components/telemetryoptin.tsx","./src/components/telemetrypage.tsx","./src/components/chain/signchain.tsx","./src/components/chain/signsharedchain.tsx","./src/components/chain/create/creationpreview.tsx","./src/components/chain/view/chainlist.tsx","./src/components/ui/button.tsx","./src/components/ui/card.tsx","./src/components/ui/dialog.tsx","./src/components/ui/input.tsx","./src/components/ui/label.tsx","./src/components/ui/scroll-area.tsx","./src/components/ui/textarea.tsx","./src/hooks/usewalletprompt.ts","./src/lib/privacypolicy.ts","./src/lib/utils.ts","./src/lib/waku.ts","./src/lib/walletconnect.ts"],"version":"5.6.3"}

View File

@ -16,7 +16,16 @@
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
/* Add these options */
"esModuleInterop": true,
"resolveJsonModule": true,
"allowJs": true,
/* Emission settings */
"emitDeclarationOnly": true,
"outDir": "./dist"
},
"include": ["vite.config.ts"]
}

File diff suppressed because one or more lines are too long