We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
compilerOptions.baseUrl
1 parent c25ec03 commit 446dff9Copy full SHA for 446dff9
tsconfig.build.json
@@ -5,8 +5,8 @@
5
"compilerOptions": {
6
"rootDir": "./dist/src",
7
"paths": {
8
- "together-ai/*": ["dist/src/*"],
9
- "together-ai": ["dist/src/index.ts"]
+ "together-ai/*": ["./dist/src/*"],
+ "together-ai": ["./dist/src/index.ts"]
10
},
11
"noEmit": false,
12
"declaration": true,
tsconfig.json
@@ -7,10 +7,9 @@
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
- "baseUrl": "./",
- "together-ai/*": ["src/*"],
13
- "together-ai": ["src/index.ts"]
+ "together-ai/*": ["./src/*"],
+ "together-ai": ["./src/index.ts"]
14
15
"noEmit": true,
16
0 commit comments