mirror of
https://github.com/danny-avila/LibreChat.git
synced 2026-08-04 14:57:42 +00:00
- Enabled `esModuleInterop` in `client/tsconfig.json` for better module compatibility. - Changed `moduleResolution` from `node` to `bundler` in `client/tsconfig.json`. - Set `noEmit` to `true` in several `tsconfig.json` files to prevent output generation. - Removed `baseUrl` from various `tsconfig.json` files to simplify path resolution. - Updated path mappings in multiple packages to reflect new directory structures. These changes aim to streamline TypeScript configurations and improve module resolution across the project.
13 lines
243 B
JSON
13 lines
243 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"target": "ES2020",
|
|
"lib": ["ES2020"],
|
|
"paths": {
|
|
"~/*": ["../../src/*"]
|
|
}
|
|
},
|
|
"include": ["./**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|