hyp / apps /ui /tsconfig.json
Leon4gr45's picture
Upload folder using huggingface_hub
1dbc34b verified
{
"compilerOptions": {
"jsx": "react-jsx",
"target": "ESNext",
"module": "ESNext",
"lib": ["dom", "ESNext"],
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
},
"moduleResolution": "bundler",
"resolveJsonModule": true,
"skipLibCheck": true,
"noEmit": true,
"isolatedModules": true
},
"include": ["src/**/*", "*.mts"],
"exclude": ["node_modules", "dist", "dist-electron"]
}