* feat(network): 添加状态同步和客户端预测模块 - 添加状态快照接口和快照缓冲区实现 - 实现线性插值和赫尔米特插值器 - 实现客户端预测和服务器校正系统 - 添加网络相关蓝图节点 (IsLocalPlayer, IsServer 等) * chore: update pnpm-lock.yaml
17 lines
406 B
JSON
17 lines
406 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts"],
|
|
"references": [
|
|
{ "path": "../blueprint" }
|
|
]
|
|
}
|