chatgpt-optimized-official
Version:
ChatGPT Client using official OpenAI API
29 lines (28 loc) • 699 B
JSON
{
"compilerOptions": {
"target": "es2022",
"module": "ESNext",
"strict": true,
"declaration": true,
"removeComments": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"outDir": "./dist",
"baseUrl": "./",
"paths": {
"@/handlers/*": ["src/handlers/*"]
},
"incremental": true,
"moduleResolution": "node",
"skipLibCheck": true,
"strictNullChecks": false,
"noImplicitAny": false,
"strictBindCallApply": false,
"forceConsistentCasingInFileNames": false,
"noFallthroughCasesInSwitch": false
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}