Files
LiveSplitOne/tsconfig.json
T
Christopher Serr a3a08bd8e6 Allow Popping Out the Timer Into a Separate Window (#1046)
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.
2025-04-12 21:45:25 +02:00

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/**/*"
]
}