SillyTavern/jsconfig.json

25 lines
574 B
JSON
Raw Normal View History

{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
2024-10-10 21:37:22 +02:00
"moduleResolution": "Node",
"strictNullChecks": true,
"strictFunctionTypes": true,
"checkJs": true,
"allowUmdGlobalAccess": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true
},
"exclude": [
2024-10-06 18:12:28 +02:00
"**/node_modules/**",
"**/dist/**",
"**/.git/**",
"public/lib/**",
"backups/**",
"data/**",
"cache/**",
"src/tokenizers/**",
"docker/**"
]
}