Skip to content

Commit 260bcba

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 b6ce6b7 commit 260bcba

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-
"legalesign-sdk/*": ["dist/src/*"],
9-
"legalesign-sdk": ["dist/src/index.ts"]
8+
"legalesign-sdk/*": ["./dist/src/*"],
9+
"legalesign-sdk": ["./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-
"legalesign-sdk/*": ["src/*"],
13-
"legalesign-sdk": ["src/index.ts"]
11+
"legalesign-sdk/*": ["./src/*"],
12+
"legalesign-sdk": ["./src/index.ts"]
1413
},
1514
"noEmit": true,
1615

0 commit comments

Comments
 (0)