2023-04-26 10:06:18 +00:00
|
|
|
{
|
|
|
|
"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"],
|
2023-05-29 15:11:02 +00:00
|
|
|
"@/*": ["./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"
|
|
|
|
]
|
2023-04-26 10:06:18 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
2023-05-03 12:25:17 +00:00
|
|
|
"exclude": ["node_modules", "next.config.js", "tailwind.config.js"]
|
2023-04-26 10:06:18 +00:00
|
|
|
}
|