feat: adjust max and step values for sharpen, edgeThreshold, and scanlines controls.

This commit is contained in:
syntaxbullet
2026-02-10 15:21:34 +01:00
parent 73a6681ceb
commit a9d2c43bfd
16 changed files with 294 additions and 104 deletions

View File

@@ -2,8 +2,11 @@
"compilerOptions": {
"target": "ES2020",
"module": "ESNext",
"moduleResolution": "node",
"lib": ["ES2020", "DOM"],
"moduleResolution": "bundler",
"lib": [
"ES2020",
"DOM"
],
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
@@ -16,6 +19,11 @@
"outDir": "./dist",
"rootDir": "./src"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"dist"
]
}