LibreChat/client/tsconfig.json

35 lines
877 B
JSON
Raw Normal View History

{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": true,
"skipLibCheck": false,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": false,
"module": "ESNext",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"isolatedModules": true,
"noImplicitAny": false,
"noEmit": false,
"declaration": true,
"declarationDir": "./types",
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
}
},
"types": ["node", "jest", "@testing-library/jest-dom"],
"exclude": ["node_modules"],
"include": ["src/**/*", "setupTests.js", "vite.config.ts", "env.d.ts"],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}