mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2024-12-12 01:17:39 +01:00
18 lines
417 B
JSON
18 lines
417 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"moduleResolution": "node",
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"checkJs": true,
|
|
"allowUmdGlobalAccess": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/node_modules/*"
|
|
]
|
|
}
|