mirror of
https://github.com/status-im/dappconnect-sdks.git
synced 2025-01-13 02:04:21 +00:00
e05c318035
* add colors to tailwind config * update reset.css * add epics page * add epic detail page * add orphans page * add repos page * add missing @status-im/components exports * update visx link * support icons in <Tag /> * update Tag in website * emojiOnly -> iconOnly * update icons scripts * add missing dir to clean script * enable eslint next config * restructure website and add layouts * move static data outside components
24 lines
731 B
JSON
24 lines
731 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/*": ["./node_modules/@status-im/*"]
|
|
// "@status-im/js": ["./node_modules/@status-im/js/packages/status-js"],
|
|
// "@status-im/components": [
|
|
// "./node_modules/@status-im/components/packages/components"
|
|
// ]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx"],
|
|
"exclude": ["node_modules", "next.config.js", "tailwind.config.js"]
|
|
}
|