// tsconfig.worker.json (Updated) { "extends": "./tsconfig.json", "compilerOptions": { "module": "commonjs", "moduleResolution": "node", "outDir": "dist", "noEmit": false }, "include": [ "worker.ts", // Only the entry point is needed! TS will find the rest., "repair.worker.ts" ], "exclude": ["node_modules", ".next", "components", "app/components"] }