-
Notifications
You must be signed in to change notification settings - Fork 2.6k
/
tsconfig.json
70 lines (70 loc) · 1.67 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"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"],
"customConditions": ["gradio"],
"target": "es2022"
},
"exclude": [
"**/_website/**/*",
"**/app/**/*",
"**/dist/**/*",
"**/public/**/*",
"**/.config/**/*",
"**/*.test.ts",
".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/**/*"
]
}