Files
LiveSplitOne/tsconfig.json
T
Christopher Serr fc4b334e05 Add Tooltips (#874)
This adds tooltips to all settings. It's not optimal yet, because it
doesn't support mobile yet, where you don't have a cursor that could
hover the settings.
2024-05-09 17:22:01 +02:00

28 lines
671 B
JSON

{
"compilerOptions": {
"sourceMap": true,
"noImplicitAny": true,
"module": "ESNext",
"target": "ES2022",
"jsx": "react",
"strictNullChecks": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"alwaysStrict": true,
"strictFunctionTypes": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"moduleResolution": "Node",
"lib": [
"ES2022",
"DOM"
]
},
"include": [
"./src/**/*"
]
}