mirror of
https://github.com/haveno-dex/haveno-ui.git
synced 2025-01-07 05:37:57 -05:00
a6c084cd6b
- Sidebar nav - Buttons - Connection Progress - Available Balance - providers - theme and layout - Storybook stories - unit tests - react dev tools Authored-by: schowdhuri Reviewed-by: localredhead
38 lines
990 B
JSON
38 lines
990 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "esnext",
|
|
"target": "esnext",
|
|
"sourceMap": false,
|
|
"moduleResolution": "Node",
|
|
"skipLibCheck": true,
|
|
"strict": true,
|
|
"isolatedModules": true,
|
|
"types": ["node", "vite-plugin-svgr/client"],
|
|
"jsx": "react-jsx",
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@assets/*": ["../assets/*"],
|
|
"@atoms/*": ["components/atoms/*"],
|
|
"@constants/*": ["constants/*"],
|
|
"@molecules/*": ["components/molecules/*"],
|
|
"@organisms/*": ["components/organisms/*"],
|
|
"@pages/*": ["pages/*"],
|
|
"@src/*": ["./*"],
|
|
"@templates/*": ["components/templates/*"],
|
|
"@utils/*": ["utils/*"]
|
|
},
|
|
"lib": ["ESNext", "dom", "dom.iterable"]
|
|
},
|
|
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.tsx",
|
|
"types/**/*.d.ts",
|
|
"../../types/**/*.d.ts",
|
|
"../preload/contracts.d.ts"
|
|
],
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
|
|
}
|