From 467f1c2543626a50d48c84669cd408571260f147 Mon Sep 17 00:00:00 2001 From: bobzel Date: Thu, 14 Aug 2025 11:00:14 -0400 Subject: added background removal for images. --- tsconfig.worker.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 tsconfig.worker.json (limited to 'tsconfig.worker.json') 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"] +} -- cgit v1.2.3-70-g09d2