mirror of
https://github.com/status-im/dappconnect-chat-sdk.git
synced 2025-01-12 23:14:53 +00:00
a7e9b1f9e3
* add illustrations assets * add stickers assets * add communities assets * add create community assets * rename messenger assets * unify messenger assets * add homepage assets * add communities page * add create community page * add assets relative path * update messenger page * remove routes * update homepage * update app layout * unify illustrations * add images path * update featre feature pages sections * update stickers * add titles to tailwind.config * update homepage * update features pages * remove arbitrary font values from titles * update links * move arbitrary values to config * update app layout * update titles * update assets * fix tw linting * changes * update homepage assets * add size to stickers * update app layout * add tokens assets * update homepage * fix colors * update section * update sections * add explore dapps section * add parallax circles * improve parallax hook * use react-scroll-parallax * update parallax circle * make section responsive * fix hero, add desktop screenshot section * remove snap * sections * update footer icon * update wallet assets paths * add moar stickers * add tailwind helpers * extract feature list * use container * update assets * use new assets * feature list * update illustrations in help * fix typing * add community cards * update hero images * update hero images * use wallet image * THE DARK --------- Co-authored-by: Jakub Kotula <520927+jkbktl@users.noreply.github.com>
34 lines
894 B
JSON
34 lines
894 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/*"],
|
|
"@assets/*": ["./public/assets/*"],
|
|
"@images/*": ["./public/images/*"],
|
|
"@docs": ["./.contentlayer/generated"],
|
|
"@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",
|
|
".contentlayer/generated"
|
|
],
|
|
"exclude": ["node_modules", "next.config.mjs", "tailwind.config.js"]
|
|
}
|