mirror of
https://github.com/haveno-dex/haveno-ui.git
synced 2024-10-01 07:35:39 -04:00
b40fe25930
- transaction list - primary address and qr code - generate sub address - send and receive xmr --- Reviewed-by: @schowdhuri
41 lines
1.1 KiB
JSON
41 lines
1.1 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",
|
|
"../../tests/global-setup.ts"
|
|
],
|
|
"exclude": ["**/*.spec.ts", "**/*.test.ts"]
|
|
}
|