fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: replace deprecated baseUrl with explicit paths in tsconfig

Prepares for TypeScript 7 which removes baseUrl support.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>

+3 -1
+3 -1
examples/openapi-ts-nestjs/tsconfig.json
··· 1 1 { 2 2 "include": ["src/**/*", "test/**/*"], 3 3 "compilerOptions": { 4 - "baseUrl": ".", 5 4 "emitDecoratorMetadata": true, 6 5 "experimentalDecorators": true, 7 6 "esModuleInterop": true, 8 7 "lib": ["es2023", "dom", "dom.iterable"], 9 8 "module": "ESNext", 10 9 "moduleResolution": "Bundler", 10 + "paths": { 11 + "src/*": ["./src/*"] 12 + }, 11 13 "skipLibCheck": true, 12 14 "target": "es2022", 13 15 "types": ["node", "vitest/globals"],