gradio/tsconfig.json
pngwn efdc3231a7
Initial SSR refactor (#9102)
* changes

* asd

* fix tests

* fix lint

* fix ts

* fix ts

* cleanup

* cleanup

* fix

* Apply suggestions from code review

Co-authored-by: Yuichiro Tachibana (Tsuchiya) <t.yic.yt@gmail.com>

* fix

* add changeset

* fix gitignore

* fix changeset

* fix lockfile

* format

* fix

* add changeset

* githunore

* kit bopilerplate

* add changeset

* fix website

* add changeset

---------

Co-authored-by: Yuichiro Tachibana (Tsuchiya) <t.yic.yt@gmail.com>
Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-08-14 15:17:36 +01:00

66 lines
1.5 KiB
JSON

{
"compilerOptions": {
"moduleResolution": "node",
"module": "ES2020",
"lib": ["es2020", "DOM", "dom.iterable"],
"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.
*/
"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"]
},
"exclude": [
"**/_website/**/*",
"**/dist/**/*",
"**/public/**/*",
"**/.config/**/*",
"**/*.test.ts",
"**/dist",
".github/**/*",
"**/demo/**/*",
"**/gradio/**/*",
"**/guides/**/*",
"**/readme_files/**/*",
"**/scripts/**/*",
"**/test/**/*",
"**/website/**/*",
"**/node_modules/**/*",
"**/venv/**/*",
"client/js/**",
"**/vite.config*",
".changeset/*.cjs",
"**/storybook-static/**/*"
],
"include": [
"**/*.d.ts",
"**/*.js",
"**/*.ts",
"**/*.svelte",
"client/js/**/*"
]
}