status-web/apps/website/tsconfig.json
Pavel e05c318035
Add initial insights implementation (#388)
* 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
2023-05-03 14:25:17 +02:00

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