Q-Apps-Utils/tsconfig.json
QortalSeth 1ffbd743c5 Added qortalRequest functions
restructured project files to be easier to understand
Vite dts plugin is used to provide type support

Added functions for the following:
Getting wallet balance
Getting/setting profile data
Sending all supported coins
Getting day summary
Getting the price ratio between QORT and all supported coins
Conversions from blocks to time and time to blocks
2023-11-27 12:51:16 -07:00

44 lines
882 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "ESNext",
"module": "ESNext",
"lib": [
"DOM",
"DOM.Iterable",
"ESNext"
],
"outDir": "./dist",
"strict": true,
"declaration": true,
"skipLibCheck": true,
"sourceMap": true,
/* Bundler mode */
"moduleResolution": "node",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"noImplicitAny": false,
/* Linting */
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true
},
"ts-node": {
"esm": true
},
"experimentalSpecifierResolution": "node",
"references": [
{
"path": "./tsconfig.node.json"
}
],
"include": ["src"],
}