mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 03:32:06 +00:00
3a6289a2ea
- Added start.gg OAuth server and session management in startgg.ts - Implemented functions to fetch recent tournaments and tournament players from start.gg - Created utility functions for string and country code handling - Introduced Challonge OAuth server and services for tournament data fetching - Refactored shared types and utility functions for better organization - Updated scoreboard graphics to use new country resolution utilities - Removed legacy startgg.ts file to streamline codebase
22 lines
500 B
JSON
22 lines
500 B
JSON
{
|
|
/* Settings used for anything extension related. */
|
|
"extends": "@tsconfig/node24/tsconfig.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.extension.tsbuildinfo",
|
|
"rootDir": "./src",
|
|
"outDir": "./",
|
|
"verbatimModuleSyntax": true,
|
|
},
|
|
"include": [
|
|
"./src/extension/**/*.ts",
|
|
"./src/types/**/*.d.ts"
|
|
],
|
|
"exclude": [
|
|
"./src/types/augment-window.d.ts"
|
|
]
|
|
}
|