gradio/tsconfig.json
pngwn 62306d9ed1
unified release process (#4986)
* Implement unified version and release mechanism for all python and javascript packages.

* Update gradio/package.json

Co-authored-by: Abubakar Abid <abubakar@huggingface.co>

* fix changelog

* fix changelog

* Update js/button/README.md

* Update .github/workflows/generate-changeset.yml

---------

Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
2023-07-21 19:13:21 +01:00

54 lines
1.1 KiB
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.
*/
"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"]
}
},
"exclude": [
"**/dist/**/*",
"**/public/**/*",
"**/.config/**/*",
"**/*.test.ts",
"**/dist",
".github/**/*",
"**/demo/**/*",
"**/gradio/**/*",
"**/guides/**/*",
"**/readme_files/**/*",
"**/scripts/**/*",
"**/test/**/*",
"**/website/**/*",
"**/node_modules/**/*",
"**/venv/**/*",
"client/js/**",
"**/vite.config*"
],
"include": [
"**/*.d.ts",
"**/*.js",
"**/*.ts",
"**/*.svelte",
"client/js/**/*",
".changeset/*.cjs"
]
}