49920d0453
* feat: updates example dapp with ethers to use `universal-provider` * feat: updates example dapp with web3 to use `universal-provider` * fix: sets `paramsString` and `address` to lower case when searching for match * chore: yarn lock * refactor: rm `outdated` warning * refactor: standardize event logging * refactor: rm logs * refactor: adds `next` to `ethers` dapp * chore: rm old files * refactor: adds next to web3 example * chore: test deploy vercel * chore: remove console log * chore: to trigger deployment * Revert "chore: to trigger deployment" This reverts commit bc7712780a101f0152c20ce4eca4d8d117d8eaa7. * feat: updates readmes Co-authored-by: crypblizz <45455218+crypblizz8@users.noreply.github.com>
21 lines
509 B
JSON
21 lines
509 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"incremental": true
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules"]
|
|
}
|