mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-08-26 19:23:40 +00:00
This adds a new button to the sidebar that allows the user to pop out the entire layout into a separate child window. This makes it take up less of the screen and capture it more easily in OBS. I'm not sure if the button should be in the sidebar or not, but it's good enough for an initial implementation. Changelog: You can now pop out the timer into a separate window.
29 lines
699 B
JSON
29 lines
699 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",
|
|
"dom.iterable"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
}
|