silly / jsconfig.json
周泳恩
添加core文件压缩和解压功能,保留用户自定义config.yaml
314a0ac
raw
history blame contribute delete
607 Bytes
{
"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/**",
"backups/**",
"data/**",
"cache/**",
"src/tokenizers/**",
"docker/**"
]
}