dappconnect-sdks/apps/website/tsconfig.json
Felicio Mununga eb5cbcdda3
[website] Add link previews (#407)
---------

Co-authored-by: Pavel Prichodko <14926950+prichodko@users.noreply.github.com>
2023-05-29 17:11:02 +02:00

25 lines
700 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"],
"exclude": ["node_modules", "next.config.js", "tailwind.config.js"]
}