Skip to content

Commit ea78dbd

Browse files
chore(internal): remove deprecated compilerOptions.baseUrl from tsconfig.json
This allows sdks to be built using tsgo - see microsoft/typescript-go#474
1 parent 062470c commit ea78dbd

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

tsconfig.build.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
"compilerOptions": {
66
"rootDir": "./dist/src",
77
"paths": {
8-
"openai/*": ["dist/src/*"],
9-
"openai": ["dist/src/index.ts"]
8+
"openai/*": ["./dist/src/*"],
9+
"openai": ["./dist/src/index.ts"]
1010
},
1111
"noEmit": false,
1212
"declaration": true,

tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,9 @@
77
"module": "commonjs",
88
"moduleResolution": "node",
99
"esModuleInterop": true,
10-
"baseUrl": "./",
1110
"paths": {
12-
"openai/*": ["src/*"],
13-
"openai": ["src/index.ts"]
11+
"openai/*": ["./src/*"],
12+
"openai": ["./src/index.ts"]
1413
},
1514
"noEmit": true,
1615

0 commit comments

Comments
 (0)