oai-reverse-proxy/tsconfig.json

20 lines
476 B
JSON
Raw Permalink Normal View History

2023-04-08 01:34:21 -06:00
{
"compilerOptions": {
"strict": true,
"target": "ES2022",
2023-04-08 01:34:21 -06:00
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"outDir": "build",
"sourceMap": true,
"resolveJsonModule": true,
"useUnknownInCatchVariables": false
2023-04-08 01:34:21 -06:00
},
"include": ["src"],
2023-04-08 04:32:24 -06:00
"exclude": ["node_modules"],
2023-12-16 19:30:20 -07:00
"files": ["src/shared/custom.d.ts"]
2023-04-08 01:34:21 -06:00
}