LibreChat/config/translations/tsconfig.json
2024-05-12 16:24:13 -04:00

17 lines
329 B
JSON

{
"compilerOptions": {
"noImplicitAny": false,
"baseUrl": ".",
"outDir": "./dist",
"strict": true,
"moduleResolution": "node",
"esModuleInterop": true,
"target": "es6",
"module": "esnext",
"lib": ["dom", "es6"],
"paths": {
"~/*": ["../../api/*"]
}
},
"include": ["*.ts"]
}