Files
LiveSplitOne/tsconfig.json
T
Christopher Serr 28d777c48f Implement Support for Custom Fonts
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.
2021-07-01 18:15:55 +02:00

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