Files
scoreko-dev/tsconfig.extension.json
Pandipipas 02a108f983 refactor: architecture base
- 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.
2026-05-23 21:52:07 +02:00

24 lines
563 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/nodecg/**/*.ts",
"./src/types/**/*.d.ts"
],
"exclude": [
"./src/nodecg/browser/**/*.ts",
"./src/types/augment-window.d.ts"
]
}