mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-09-21 21:50:49 +02:00

* chore: migrated eslint v8 to v9 * chore: migrated eslint v8 to v9 * ESLint only checks the files that have changed in the pull request. * fix: ESLint only checks the files that have changed in the pull request. * refactor: eslint only on changed files * refactor: eslint only on changed files or added files * refactor: eslint only on changed files or added files * refactor: eslint only on changed files or added files but only include files that are not deleted (ACMRTUXB: A, C, M, R, T, U, X, B). * whoops missed something
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": false,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": false,
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"noImplicitAny": false,
|
|
"noEmit": false,
|
|
"declaration": true,
|
|
"declarationDir": "./types",
|
|
"jsx": "preserve",
|
|
"baseUrl": "..",
|
|
"paths": {
|
|
"~/*": ["./client/src/*"],
|
|
"test/*": ["./client/test/*"],
|
|
"*": ["./client/*", "../node_modules/*"],
|
|
"librechat-data-provider/*": ["./packages/data-provider/*"]
|
|
}
|
|
},
|
|
"types": ["node", "jest", "@testing-library/jest-dom"],
|
|
"exclude": ["node_modules", "vite.config.ts"],
|
|
"include": [
|
|
"src/**/*",
|
|
"test/**/*",
|
|
"../e2e/**/*",
|
|
"test/setupTests.js",
|
|
"env.d.ts",
|
|
"../config/translations/**/*.ts"
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.node.json"
|
|
}
|
|
]
|
|
}
|