* feat(3d): FBX/GLTF/OBJ 加载器与骨骼动画支持 * chore: 更新 pnpm-lock.yaml * fix: 移除未使用的变量和方法 * fix: 修复 mesh-3d-editor tsconfig 引用路径 * fix: 修复正则表达式 ReDoS 漏洞
18 lines
425 B
JSON
18 lines
425 B
JSON
{
|
|
"extends": "../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"jsx": "react-jsx"
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist"],
|
|
"references": [
|
|
{ "path": "../core" },
|
|
{ "path": "../engine-core" },
|
|
{ "path": "../editor-core" },
|
|
{ "path": "../mesh-3d" }
|
|
]
|
|
}
|