mirror of
https://github.com/Qortal/q-fund-v2.git
synced 2025-01-28 22:02:20 +00:00
32 lines
784 B
JSON
32 lines
784 B
JSON
{
|
|
"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" }]
|
|
}
|