Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
raw
history blame
614 Bytes
{
"include": [
"env.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.js",
"*.d.ts",
"vite.config.mts"
],
"exclude": ["build"],
"compilerOptions": {
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"isolatedModules": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"module": "ESNext",
"moduleResolution": "Bundler",
"resolveJsonModule": true,
"target": "ESNext",
"strict": true,
"paths": {
"~/*": ["./app/*"]
},
"skipLibCheck": true,
"noEmit": true,
"baseUrl": ".",
"allowJs": true,
"forceConsistentCasingInFileNames": true
}
}