|
{ |
|
"compilerOptions": { |
|
"moduleResolution": "node", |
|
"module": "es2020", |
|
"lib": ["es2020", "DOM"], |
|
"target": "es2020", |
|
|
|
|
|
|
|
|
|
"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/**/*" |
|
] |
|
} |
|
|