mirror of
https://github.com/CCBlueX/LiquidBounce.git
synced 2025-09-06 09:46:38 +00:00

The theme is now considered stable enough to be merged into nightly. Rewritten theme that includes - ClickGUI - MainMenu - Singleplayer - Multiplayer (with ViaFabricPlus support) - Alt Manager - Proxy Manager - New Font - HUD TabGUI - HUD ArrayList - HUD Hotbar - HUD Scoreboard - HUD Minimap via component - HUD Notifications - HUD Target HUD - HUD Taco (what we have all been waiting for!!!) Other changes that come with the theme: - Proxy Manager now checks proxy before adding - Mark accounts or proxy as favourite - Filters for account name, server name, world name, options and types - New MCEF that fixes all cursor related issues and improved error handling - Many new event types (scaleFactor, etc...) useful for ScriptAPI and Theme! - Image Atlas RestAPI (access to pre-rendered 3D models of items and blocks) and many other changes! --------- Co-authored-by: Senk Ju <18741573+SenkJu@users.noreply.github.com> Co-authored-by: superblaubeere27 <arschwixxa123@gmail.com>
21 lines
621 B
JSON
21 lines
621 B
JSON
{
|
|
"extends": "@tsconfig/svelte/tsconfig.json",
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"resolveJsonModule": true,
|
|
/**
|
|
* Typecheck JS in `.svelte` and `.js` files by default.
|
|
* Disable checkJs if you'd like to use dynamic types in JS.
|
|
* Note that setting allowJs false does not prevent the use
|
|
* of JS in `.svelte` files.
|
|
*/
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"isolatedModules": true
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.js", "src/**/*.svelte"],
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|