mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-08-27 03:33:40 +00:00
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.
28 lines
671 B
JSON
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/**/*"
|
|
]
|
|
}
|