flash555588_ai-model-workbench/tsconfig.json
Flash d06a93c67a feat: add PLY format and mobile support
PLY loader (ASCII/binary, mesh + point cloud + vertex color),
mobile compatibility (hardware scaling), SPLAT summary fix.
2026-05-07 17:51:56 +08:00

28 lines
No EOL
547 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"target": "ES2018",
"module": "ESNext",
"moduleResolution": "node",
"allowJs": false,
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"isolatedModules": true,
"skipLibCheck": true,
"inlineSourceMap": true,
"inlineSources": true,
"types": [
"node"
],
"lib": [
"DOM",
"ES2018"
]
},
"include": [
"src/**/*.ts"
]
}