Files
pngwn c4986883b2 Ensure svelte version mismatches do not break custom components (#12879)
* fix

* fix all

* clean

* clean

* add changeset

* format

* format

* cleanup

* fix lockfile

* fix

* fix

* fix things

* lockfile

* format

* add changeset

* fix tests

* fix

* fix

* fix?

* format

* manually resolve svelte

* fix

* format

* add changeset

* Add back svelte preprocessors

* format backend

* handle tests

* format

* add changeset

* format

* format

* format

* fix

* format

* fix

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
Co-authored-by: Freddy Boulton <41651716+freddyaboulton@users.noreply.github.com>
2026-03-04 17:52:52 +00:00

72 lines
1.7 KiB
JSON

{
"compilerOptions": {
"moduleResolution": "bundler",
"module": "esnext",
"lib": ["es2022", "DOM", "dom.iterable"],
/**
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.
*/
"verbatimModuleSyntax": true,
"resolveJsonModule": true,
"strict": true,
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"checkJs": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"./pure": ["./pure.js"]
// "@gradio/client": ["./client/js/src/index.ts"]
},
"plugins": [
{
"name": "typescript-svelte-plugin",
// the following options can be set additionally; they are optional; their default values are listed here
"enabled": true, // enables this plugin
"assumeIsSvelteProject": false // if true, skip detection and always assume it's a Svelte project
}
],
"types": ["vite/client", "@testing-library/jest-dom"],
"customConditions": ["gradio"],
"target": "es2022"
},
"exclude": [
"**/_website/**/*",
"**/app/**/*",
"**/dist/**/*",
"**/public/**/*",
"**/.config/**/*",
"**/*.test.ts",
"**/*.stories.*",
".github/**/*",
"**/demo/**/*",
"**/gradio/**/*",
"**/guides/**/*",
"**/readme_files/**/*",
"**/scripts/**/*",
"**/test/**/*",
"**/website/**/*",
"**/node_modules/**/*",
"**/venv/**/*",
"client/js/**",
"**/vite.config*",
".changeset/*.cjs",
"**/storybook-static/**/*",
"**/build/out/**/*",
"**/component-test/**/*",
"**/js/wasm/src/webworker/**/*"
],
"include": [
"**/*.d.ts",
"**/*.js",
"**/*.ts",
"**/*.svelte",
"client/js/**/*",
"!**/dist/**/*"
]
}