2022-02-02 14:02:09 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"module": "es2020",
|
2023-07-31 08:31:39 -04:00
|
|
|
"lib": ["es2020", "DOM", "dom.iterable"],
|
2022-02-02 14:02:09 +00: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.
|
|
|
|
*/
|
2023-06-28 22:40:53 +01:00
|
|
|
"verbatimModuleSyntax": true,
|
2022-02-02 14:02:09 +00:00
|
|
|
"resolveJsonModule": true,
|
2022-02-02 15:49:37 +00:00
|
|
|
"strict": true,
|
2022-02-02 14:02:09 +00:00
|
|
|
"sourceMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
2023-03-28 00:12:58 +01:00
|
|
|
"outDir": "dist",
|
2023-06-28 22:40:53 +01:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"./pure": ["./pure.js"]
|
|
|
|
}
|
2022-02-02 14:02:09 +00:00
|
|
|
},
|
2022-07-21 19:12:46 +01:00
|
|
|
"exclude": [
|
2023-08-11 15:54:56 +01:00
|
|
|
"**/_website/**/*",
|
2022-07-21 19:12:46 +01:00
|
|
|
"**/dist/**/*",
|
|
|
|
"**/public/**/*",
|
2023-06-27 10:28:27 -04:00
|
|
|
"**/.config/**/*",
|
2023-03-29 19:30:00 -04:00
|
|
|
"**/*.test.ts",
|
2023-03-28 00:12:58 +01:00
|
|
|
"**/dist",
|
|
|
|
".github/**/*",
|
|
|
|
"**/demo/**/*",
|
|
|
|
"**/gradio/**/*",
|
|
|
|
"**/guides/**/*",
|
|
|
|
"**/readme_files/**/*",
|
|
|
|
"**/scripts/**/*",
|
|
|
|
"**/test/**/*",
|
|
|
|
"**/website/**/*",
|
|
|
|
"**/node_modules/**/*",
|
2023-05-12 16:22:25 +01:00
|
|
|
"**/venv/**/*",
|
2023-07-04 16:33:22 +03:00
|
|
|
"client/js/**",
|
|
|
|
"**/vite.config*"
|
2022-07-21 19:12:46 +01:00
|
|
|
],
|
2023-01-17 20:47:40 +00:00
|
|
|
"include": [
|
|
|
|
"**/*.d.ts",
|
|
|
|
"**/*.js",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.svelte",
|
2023-07-21 19:13:21 +01:00
|
|
|
"client/js/**/*",
|
|
|
|
".changeset/*.cjs"
|
2023-01-17 20:47:40 +00:00
|
|
|
]
|
2023-07-03 16:21:00 +02:00
|
|
|
}
|