2022-02-02 22:02:09 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"module": "es2020",
|
2023-06-27 22:28:27 +08:00
|
|
|
"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.
|
|
|
|
*/
|
2023-06-29 05:40:53 +08:00
|
|
|
"verbatimModuleSyntax": true,
|
2022-02-02 22:02:09 +08:00
|
|
|
"isolatedModules": true,
|
|
|
|
"resolveJsonModule": true,
|
2022-02-02 23:49:37 +08:00
|
|
|
"strict": true,
|
2022-02-02 22:02:09 +08:00
|
|
|
"sourceMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
2023-03-28 07:12:58 +08:00
|
|
|
"outDir": "dist",
|
2023-06-29 05:40:53 +08:00
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"./pure": ["./pure.js"]
|
|
|
|
}
|
2022-02-02 22:02:09 +08:00
|
|
|
},
|
2022-07-22 02:12:46 +08:00
|
|
|
"exclude": [
|
|
|
|
"**/dist/**/*",
|
|
|
|
"**/public/**/*",
|
2023-06-27 22:28:27 +08:00
|
|
|
"**/.config/**/*",
|
2023-03-30 07:30:00 +08:00
|
|
|
"**/*.test.ts",
|
2023-03-28 07:12:58 +08:00
|
|
|
"**/dist",
|
|
|
|
".github/**/*",
|
|
|
|
"**/demo/**/*",
|
|
|
|
"**/gradio/**/*",
|
|
|
|
"**/guides/**/*",
|
|
|
|
"**/readme_files/**/*",
|
|
|
|
"**/scripts/**/*",
|
|
|
|
"**/test/**/*",
|
|
|
|
"**/website/**/*",
|
|
|
|
"**/node_modules/**/*",
|
2023-05-12 23:22:25 +08:00
|
|
|
"**/venv/**/*",
|
2023-06-22 18:25:27 +08:00
|
|
|
"client/js/**"
|
2022-07-22 02:12:46 +08:00
|
|
|
],
|
2023-01-18 04:47:40 +08:00
|
|
|
"include": [
|
|
|
|
"**/*.d.ts",
|
|
|
|
"**/*.js",
|
|
|
|
"**/*.ts",
|
|
|
|
"**/*.svelte",
|
2023-03-28 07:12:58 +08:00
|
|
|
"client/js/**/*"
|
2023-01-18 04:47:40 +08:00
|
|
|
]
|
2023-06-27 22:28:27 +08:00
|
|
|
}
|