Files
st/web-app/jsconfig.json
2026-02-10 17:48:27 +08:00

26 lines
610 B
JSON

{
"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/**"
]
}