mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-24 12:20:14 +01:00
27 lines
674 B
JSON
27 lines
674 B
JSON
{
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"declarationDir": "./types",
|
|
"module": "esnext",
|
|
"noImplicitAny": true,
|
|
"outDir": "./types",
|
|
"target": "es5",
|
|
"moduleResolution": "node",
|
|
"allowSyntheticDefaultImports": true,
|
|
"lib": ["es2017", "dom"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noEmit": true,
|
|
"baseUrl": "src",
|
|
"paths": {
|
|
"@src/*": ["./*"]
|
|
}
|
|
},
|
|
"exclude": ["node_modules", "dist", "types"],
|
|
"include": ["src/**/*", "types/index.d.ts"]
|
|
}
|