Files
playcanvas--supersplat/tsconfig.json
T
wehub-resource-sync 2e0fafcb4e
CI / Build (22.x) (push) Failing after 1s
CI / Lint (22.x) (push) Failing after 1s
chore: import upstream snapshot with attribution
2026-07-13 12:24:51 +08:00

27 lines
633 B
JSON

{
"compilerOptions": {
"target": "es2022",
"module": "es2020",
"moduleResolution": "bundler",
"lib": ["es2022", "dom", "WebWorker"],
"sourceMap": true,
"noImplicitAny": true,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"useUnknownInCatchVariables": false,
"skipLibCheck": true,
"inlineSources": true,
"resolveJsonModule": true,
},
"include": [
"./src/**/*.ts",
"global.d.ts"
],
"exclude": [
"src/debug.ts", // Testing file
"dist",
"node_modules"
]
}