mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-09 02:00:44 +08:00
d6fbc32ed1
* add theme + theme atoms * audio * buttons * chatbot * forms * start file * complete file * fixup workbench * gallery * highlighted text * label * json * upload * 3d model * atoms * chart * md + html * image * plot + build * table * tabs * tooltip * upload * tweaks * tweaks + more tooling * tweaks to padding/ lineheight * app components _ start api docs * format, more api docs * finish api docs * interpretation * todos * tweaks + cleanup * tweaks + cleanup * revert range tweaks * fix notebooks * fix test * remove tw * cleanup + login * fix gitignore * fix types * run css script * fix progress + tweaks * update demos * add css build to static check workflow * tweak ci * fix tests * tweak markdown * tweak chatbot + file * fix tabs * tweak tabs * cleanup * fix api docs * fix example gallery * add gradient to toast * fix min height for interfaces * revert tab changes * update notebooks * fix generating status animation * fix weird table scrollbar that only appears on freddy's computer * format * fix dataset in gallery mode * cleanup * fix notebooks * tweaks * fix notebooks * change Co-authored-by: Ali Abid <aabid94@gmail.com>
41 lines
855 B
JSON
41 lines
855 B
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,
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"outDir": "dist"
|
|
},
|
|
"exclude": [
|
|
"**/dist/**/*",
|
|
"**/public/**/*",
|
|
"**/*.config.js",
|
|
"dist",
|
|
|
|
"**/workbench/**/*",
|
|
"**/Plot.svelte"
|
|
],
|
|
"include": [
|
|
"**/*.d.ts",
|
|
"**/*.js",
|
|
"**/*.ts",
|
|
"**/*.svelte",
|
|
"packages/theme/src/generate_theme.cjs"
|
|
]
|
|
}
|