dappconnect-sdks/apps/website/tsconfig.json

25 lines
700 B
JSON
Raw Normal View History

{
"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"]
}