Skip to content

Commit 463774e

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 1903f1f commit 463774e

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
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-
"llama-stack-client/*": ["dist/src/*"],
9-
"llama-stack-client": ["dist/src/index.ts"],
8+
"llama-stack-client/*": ["./dist/src/*"],
9+
"llama-stack-client": ["./dist/src/index.ts"]
1010
},
1111
"noEmit": false,
1212
"declaration": true,

tsconfig.json

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,10 @@
77
"module": "commonjs",
88
"moduleResolution": "node",
99
"esModuleInterop": true,
10-
"baseUrl": "./",
1110
"paths": {
12-
"llama-stack-client/_shims/auto/*": ["src/_shims/auto/*-node"],
13-
"llama-stack-client/*": ["src/*"],
14-
"llama-stack-client": ["src/index.ts"]
11+
"llama-stack-client/_shims/auto/*": ["./src/_shims/auto/*-node"],
12+
"llama-stack-client/*": ["./src/*"],
13+
"llama-stack-client": ["./src/index.ts"]
1514
},
1615
"noEmit": true,
1716

@@ -32,7 +31,7 @@
3231
"noUncheckedIndexedAccess": true,
3332
"noImplicitOverride": true,
3433
"noPropertyAccessFromIndexSignature": true,
35-
"isolatedModules": false,
34+
"isolatedModules": false,
3635

3736
"skipLibCheck": true
3837
}

0 commit comments

Comments
 (0)