mirror of
https://github.com/Pandipipas/scoreko-dev.git
synced 2026-06-06 03:32:06 +00:00
02a108f983
- Moved NodeCG context management to a dedicated context module. - Introduced message handling utilities for better message listening and sending. - Updated startgg integration to use new message handling methods. - Removed deprecated replicant utilities and replaced them with a new structure. - Refactored replicant imports in graphics components to align with new structure. - Added new pack-related types and schemas for better type safety. - Cleaned up unused files and consolidated pack configuration into a single module. - Updated TypeScript configurations to reflect new directory structure.
28 lines
745 B
JSON
28 lines
745 B
JSON
{
|
|
/* Settings here partially mimick those included in a generated Vue project (pnpm create vue). */
|
|
/* Settings used for anything browser related (dashboard and graphics). */
|
|
"extends": "@vue/tsconfig/tsconfig.dom.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"lib": [
|
|
"ES2022",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"typeRoots": [
|
|
"./node_modules/@types"
|
|
],
|
|
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.browser.tsbuildinfo",
|
|
},
|
|
"include": [
|
|
"./src/dashboard/**/*.ts",
|
|
"./src/dashboard/**/*.vue",
|
|
"./src/graphics/**/*.ts",
|
|
"./src/graphics/**/*.vue",
|
|
"./src/nodecg/browser/**/*.ts",
|
|
"./src/nodecg/*.ts",
|
|
"./src/shared/domain/**/*.ts",
|
|
"./src/types/**/*.d.ts"
|
|
]
|
|
}
|