AI / lightrag_webui /tsconfig.json
PBThuong's picture
Deploy LightRAG AI Assistant with Git LFS for binary assets and fonts
979853c
Raw
History Blame Contribute Delete
733 Bytes
Invalid JSON:Expected double-quoted property name in JSONat line 9, column 5
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
/* Paths */
// "baseUrl": ".", removed for TypeScript 7 compatibility
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src", "src/types", "vite.config.ts", "src/vite-env.d.ts"]
}