refactor(C4): adapt to new functions and new ForgeEvent usage

This commit is contained in:
2025-12-20 16:28:57 +08:00
parent c494b5fb3e
commit 8ffa4daa60
2 changed files with 91 additions and 91 deletions

View File

@@ -2,12 +2,19 @@
"$schema": "https://www.schemastore.org/jsconfig.json",
"extends": "../../jsconfig.json",
"compilerOptions": {
"typeRoots": ["../../types/probe/startup/"]
"typeRoots": ["../../types/probe/startup/"],
"paths": {
"packages/*": [
"../../types/probe/startup/packages/*",
"../../types/probe/shared/*"
]
}
},
"include": [
"./**/*",
"../../types/*.d.ts",
"../../types/probe/shared/*.d.ts",
"../../types/probe/startup/**/*.d.ts"
"include": ["./**/*", "../../types/*.d.ts", "../../types/probe/**/*.d.ts"],
"exclude": [
"../../types/probe/client/global/*.d.ts",
"../../types/probe/server/global/*.d.ts",
"../../types/probe/client/**/*.d.ts",
"../../types/probe/server/**/*.d.ts"
]
}