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 062470c commit ea78dbdCopy full SHA for ea78dbd
tsconfig.build.json
@@ -5,8 +5,8 @@
5
"compilerOptions": {
6
"rootDir": "./dist/src",
7
"paths": {
8
- "openai/*": ["dist/src/*"],
9
- "openai": ["dist/src/index.ts"]
+ "openai/*": ["./dist/src/*"],
+ "openai": ["./dist/src/index.ts"]
10
},
11
"noEmit": false,
12
"declaration": true,
tsconfig.json
@@ -7,10 +7,9 @@
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
- "baseUrl": "./",
- "openai/*": ["src/*"],
13
- "openai": ["src/index.ts"]
+ "openai/*": ["./src/*"],
+ "openai": ["./src/index.ts"]
14
15
"noEmit": true,
16
0 commit comments