ts-chatgpt-api
Version:
ChatGPT API is a powerful tool developed on TypeScript that allows developers to easily integrate natural language processing capabilities into their applications. As a large language model trained by OpenAI, ChatGPT is capable of understanding and gener
23 lines (22 loc) • 416 B
JSON
{
"compilerOptions": {
"declaration": true,
"target": "es2020",
"module": "commonjs",
"outDir": "./dist",
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"paths": {
"@/*": [
"./src/*"
]
}
},
"include": [
"src/**/*"
]
}