2023-06-15 22:36:11 -07:00
|
|
|
{
|
2023-06-30 18:45:59 -07:00
|
|
|
"include": ["src", "tests", "examples"],
|
2024-12-20 16:32:18 +00:00
|
|
|
"exclude": [],
|
2023-06-15 22:36:11 -07:00
|
|
|
"compilerOptions": {
|
2023-10-06 14:27:45 -04:00
|
|
|
"target": "es2020",
|
2023-06-15 22:36:11 -07:00
|
|
|
"lib": ["es2020"],
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"paths": {
|
2025-09-25 22:52:45 +00:00
|
|
|
"openai/*": ["./src/*"],
|
|
|
|
|
"openai": ["./src/index.ts"]
|
2023-06-15 22:36:11 -07:00
|
|
|
},
|
2023-07-08 11:14:58 -07:00
|
|
|
"noEmit": true,
|
2023-06-15 22:36:11 -07:00
|
|
|
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
|
|
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
|
"strictBindCallApply": true,
|
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
|
"noImplicitThis": true,
|
2023-11-07 17:43:33 +00:00
|
|
|
"noImplicitReturns": true,
|
2023-06-15 22:36:11 -07:00
|
|
|
"alwaysStrict": true,
|
|
|
|
|
"exactOptionalPropertyTypes": true,
|
|
|
|
|
"noUncheckedIndexedAccess": true,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": true,
|
2025-05-23 17:04:06 +01:00
|
|
|
"isolatedModules": true,
|
2023-06-15 22:36:11 -07:00
|
|
|
|
|
|
|
|
"skipLibCheck": true
|
|
|
|
|
}
|
|
|
|
|
}
|