Files
gltf-model-compressor/tsconfig.json
4hyhzi 18eaaff65f chore: 初始化glTF模型压缩工具包
添加了完整的项目配置、工具函数、纹理压缩与模型优化实现,以及文档说明
2026-05-18 16:51:56 +08:00

18 lines
341 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "CommonJS",
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": false,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true
},
"include": [
"src/**/*"
]
}