tavern / SillyTavern-1.13.0 /jsconfig.json
liucy98's picture
Upload 910 files
d44b3c1 verified
raw
history blame contribute delete
610 Bytes
{
"compilerOptions": {
"module": "ESNext",
"target": "ES2023",
"moduleResolution": "Bundler",
"strictNullChecks": true,
"strictFunctionTypes": true,
"checkJs": true,
"allowUmdGlobalAccess": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"strictBindCallApply": true
},
"exclude": [
"**/node_modules/**",
"**/dist/**",
"**/.git/**",
"public/**",
"backups/**",
"data/**",
"cache/**",
"src/tokenizers/**",
"docker/**"
]
}