mirror of
https://github.com/status-im/dappconnect-sdks.git
synced 2025-01-13 10:14:57 +00:00
45ae36a64f
* remove og api route * sort deps * add compress opt to resolve fn * add ens api route * use ens * fix loading state * type response * use await * add zod dep * add schema module * add declaration file * update yarn.lock * mv next.config.js to next.config.mjs * require some env * update env loading --------- Co-authored-by: Pavel Prichodko <14926950+prichodko@users.noreply.github.com>
25 lines
713 B
JSON
25 lines
713 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "preserve",
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"react-native": ["react-native-web"],
|
|
"@/*": ["./src/*"],
|
|
"@status-im/js/encode-url-data": [
|
|
"../../packages/status-js/src/utils/encode-url-data"
|
|
],
|
|
"@status-im/js/encode-url-hash": [
|
|
"../../packages/status-js/src/utils/encode-url-hash"
|
|
]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "env.d.ts"],
|
|
"exclude": ["node_modules", "next.config.mjs", "tailwind.config.js"]
|
|
}
|