mirror of
https://github.com/haveno-dex/haveno-ui.git
synced 2025-02-13 13:21:26 -05:00
![Subir](/assets/img/avatar_default.png)
chore: updated README chore: added button tests and stories fix: removed unused code from @atoms/Currency chore: added tests and stories for @atoms/Link test: refactored NodeConnectSwitch refactored chore: refactored NodeStatus test: atom/ProtectedRoute feat: added PasswordInput atom chore: refactored account sidebar test: PaymentMethodCard and AddPaymentMethod button test: ReadyToUse molecule test: SetPassword organism test: Login page chore: added stories for onboarding pages --- Reviewed-by: localredhead
40 lines
1.0 KiB
JSON
40 lines
1.0 KiB
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/*"],
|
|
"@hooks/*": ["hooks/*"],
|
|
"@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",
|
|
"../../tests/setup-tests.ts"
|
|
],
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
|
|
}
|