mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-02-20 14:10:39 +01:00
26 lines
611 B
JSON
26 lines
611 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ES2023",
|
|
"moduleResolution": "Node",
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"checkJs": true,
|
|
"allowUmdGlobalAccess": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"strictBindCallApply": true
|
|
},
|
|
"exclude": [
|
|
"**/node_modules/**",
|
|
"**/dist/**",
|
|
"**/.git/**",
|
|
"public/lib/**",
|
|
"backups/**",
|
|
"data/**",
|
|
"cache/**",
|
|
"src/tokenizers/**",
|
|
"docker/**"
|
|
]
|
|
}
|