aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.worker.json
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2025-08-14 11:00:14 -0400
committerbobzel <zzzman@gmail.com>2025-08-14 11:00:14 -0400
commit467f1c2543626a50d48c84669cd408571260f147 (patch)
tree2cb3599c4ca95fe2b975deb8dc72283151e1c585 /tsconfig.worker.json
parent5b0b7241e68febc2d0556b6c2e8349411b5c12a0 (diff)
added background removal for images.
Diffstat (limited to 'tsconfig.worker.json')
-rw-r--r--tsconfig.worker.json18
1 files changed, 18 insertions, 0 deletions
diff --git a/tsconfig.worker.json b/tsconfig.worker.json
new file mode 100644
index 000000000..f58377c2e
--- /dev/null
+++ b/tsconfig.worker.json
@@ -0,0 +1,18 @@
+{
+ "extends": "./tsconfig.json",
+ "compilerOptions": {
+ "outDir": "dist/worker",
+ "noEmit": false,
+ "jsx": "react-jsx", // or "react" if you're not using the new JSX transform
+ "module": "ESNext",
+ "target": "ESNext",
+ "lib": ["DOM", "ESNext"],
+ "sourceMap": true,
+ "moduleResolution": "node",
+ "resolveJsonModule": true,
+ "allowSyntheticDefaultImports": true,
+ "strict": true
+ },
+ "include": ["src/workers/**/*", "src/utils/**/*"],
+ "exclude": ["node_modules", "src/components/**/*.stories.tsx", "src/components/**/*.test.tsx", "src/server", "static"]
+}