oai-proxy / tsconfig.json
AAZZ's picture
Duplicate from khanon/oai-proxy
fe91fe3
raw
history blame contribute delete
No virus
380 Bytes
{
"compilerOptions": {
"strict": true,
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"outDir": "build"
},
"include": ["src"],
"exclude": ["node_modules"],
"files": ["src/types/custom.d.ts"]
}