3
0
mirror of https://github.com/Qortal/Q-Apps-Utils.git synced 2025-02-19 13:45:54 +00:00

27 lines
670 B
JSON
Raw Normal View History

2023-10-09 12:44:15 -06:00
{
"compilerOptions": {
"target": "ESNext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "Node",
"esModuleInterop": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"noImplicitAny": false,
/* Linting */
"strict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true
},
"include": ["**/*"],
"references": [{ "path": "./tsconfig.node.json" }]
}