mirror of
https://github.com/gradio-app/gradio.git
synced 2024-11-21 01:01:05 +08:00
03a11fcd3c
* Add download buttom * Add missing imports * CHANGELOG * Update CHANGELOG.md * Trigger CI * Fix visibility * Try to fix ci * Fix deps * download button change * Lint --------- Co-authored-by: Dawood <dawoodkhan82@gmail.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
51 lines
1.0 KiB
JSON
51 lines
1.0 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"moduleResolution": "node",
|
|
"module": "es2020",
|
|
"lib": ["es2020", "DOM"],
|
|
"target": "es2020",
|
|
/**
|
|
svelte-preprocess cannot figure out whether you have a value or a type, so tell TypeScript
|
|
to enforce using \`import type\` instead of \`import\` for Types.
|
|
*/
|
|
"importsNotUsedAsValues": "error",
|
|
"isolatedModules": true,
|
|
"resolveJsonModule": true,
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"outDir": "dist",
|
|
"baseUrl": "."
|
|
},
|
|
"exclude": [
|
|
"**/dist/**/*",
|
|
"**/public/**/*",
|
|
"**/*.config.js",
|
|
"**/*.test.ts",
|
|
"**/dist",
|
|
"**/workbench/**/*",
|
|
"**/Plot.svelte",
|
|
".github/**/*",
|
|
"**/demo/**/*",
|
|
"**/gradio/**/*",
|
|
"**/guides/**/*",
|
|
"**/readme_files/**/*",
|
|
"**/scripts/**/*",
|
|
"**/test/**/*",
|
|
"**/website/**/*",
|
|
"**/node_modules/**/*",
|
|
"**/venv/**/*"
|
|
],
|
|
"include": [
|
|
"**/*.d.ts",
|
|
"**/*.js",
|
|
"**/*.ts",
|
|
"**/*.svelte",
|
|
"client/js/**/*"
|
|
]
|
|
}
|