chore(project): fully support ProbeJS v7.0 (Also ProbeJS Legacy v5.2.3)

This commit is contained in:
2025-12-20 16:28:57 +08:00
parent 39865e058d
commit c494b5fb3e
6 changed files with 44 additions and 4 deletions

View File

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