gradio/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

55 lines
1.1 KiB
JSON
Raw Normal View History

2022-02-02 22:02:09 +08:00
{
"compilerOptions": {
"moduleResolution": "node",
"module": "es2020",
"lib": [
"es2020",
"DOM"
],
2022-02-02 22:02:09 +08:00
"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,
2022-02-02 22:02:09 +08:00
"isolatedModules": true,
"resolveJsonModule": true,
"strict": true,
2022-02-02 22:02:09 +08:00
"sourceMap": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"checkJs": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"./pure": ["./pure.js"]
}
2022-02-02 22:02:09 +08:00
},
"exclude": [
"**/dist/**/*",
"**/public/**/*",
"**/.config/**/*",
"**/*.test.ts",
"**/dist",
".github/**/*",
"**/demo/**/*",
"**/gradio/**/*",
"**/guides/**/*",
"**/readme_files/**/*",
"**/scripts/**/*",
"**/test/**/*",
"**/website/**/*",
"**/node_modules/**/*",
2023-05-12 23:22:25 +08:00
"**/venv/**/*",
"client/js/**"
],
"include": [
"**/*.d.ts",
"**/*.js",
"**/*.ts",
"**/*.svelte",
"client/js/**/*"
]
}