From 3718177066235c4364f093fd20c0adf5b558f0fb Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Fri, 6 Mar 2026 13:50:52 +0000 Subject: [PATCH] fix: replace removed baseUrl with paths in fastify tsconfig for tsgo compatibility Co-authored-by: mrlubos <12529395+mrlubos@users.noreply.github.com> --- examples/openapi-ts-fastify/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/openapi-ts-fastify/tsconfig.json b/examples/openapi-ts-fastify/tsconfig.json index 49918c732..69a45e1d7 100644 --- a/examples/openapi-ts-fastify/tsconfig.json +++ b/examples/openapi-ts-fastify/tsconfig.json @@ -1,8 +1,8 @@ { "include": ["src/**/*", "test/**/*"], "compilerOptions": { - "baseUrl": ".", "esModuleInterop": true, + "paths": { "*": ["./*"] }, "lib": ["es2023", "dom", "dom.iterable"], "module": "ESNext", "moduleResolution": "Bundler", -- 2.51.2