mirror of
https://github.com/ApfelTeeSaft/LiveSplitOne.git
synced 2026-08-27 03:33:40 +00:00
This implements support for custom fonts. Additionally it updates livesplit-core and all our npm dependencies to the latest version. This also switches how we propagate colors and fonts through the layout. We are now using custom CSS variables instead of passing them through the component tree.
28 lines
671 B
JSON
28 lines
671 B
JSON
{
|
|
"compilerOptions": {
|
|
"sourceMap": true,
|
|
"noImplicitAny": true,
|
|
"module": "ESNext",
|
|
"target": "ES2018",
|
|
"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": [
|
|
"ES2018",
|
|
"DOM"
|
|
]
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
]
|
|
}
|