3
0
mirror of https://github.com/Qortal/q-fund-v2.git synced 2025-01-30 06:42:21 +00:00
q-fund-v2/tsconfig.json

32 lines
784 B
JSON
Raw Permalink Normal View History

2023-12-10 12:13:58 +00:00
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"allowImportingTsExtensions": true,
"jsx": "react-jsx",
"noImplicitAny": false,
/* Linting */
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"sourceMap": true
},
"include": [
"src/**/*"
],
"references": [{ "path": "./tsconfig.node.json" }]
}