Files
compress-gltf-tools/tsconfig.json
2026-04-29 10:20:59 +08:00

20 lines
319 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"moduleResolution": "node",
"rootDir": "src",
"outDir": "dist",
"allowJs": true,
"esModuleInterop": true,
"strict": false,
"skipLibCheck": true
},
"include": [
"src/**/*"
],
"exclude": [
"dist"
]
}