SIGN IN SIGN UP
openai / openai-node UNCLAIMED

Official JavaScript / TypeScript library for the OpenAI API

0 0 0 TypeScript
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": {
"target": "es2020",
2023-06-15 22:36:11 -07:00
"lib": ["es2020"],
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"paths": {
"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,
"noImplicitReturns": true,
2023-06-15 22:36:11 -07:00
"alwaysStrict": true,
"exactOptionalPropertyTypes": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"isolatedModules": true,
2023-06-15 22:36:11 -07:00
"skipLibCheck": true
}
}