mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-31 15:48:51 +01:00
21 lines
413 B
JSON
21 lines
413 B
JSON
|
|
{
|
||
|
|
"extends": "./tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"rootDir": ".",
|
||
|
|
"noEmit": true,
|
||
|
|
"declaration": false,
|
||
|
|
"declarationMap": false,
|
||
|
|
"declarationDir": null,
|
||
|
|
"outDir": null,
|
||
|
|
"types": ["jest", "node"]
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"src/**/*.spec.ts",
|
||
|
|
"src/**/*.spec.tsx",
|
||
|
|
"src/**/*.test.ts",
|
||
|
|
"src/**/*.test.tsx",
|
||
|
|
"jest.setup.ts"
|
||
|
|
],
|
||
|
|
"exclude": ["dist", "node_modules"]
|
||
|
|
}
|