This commit is contained in:
张成
2026-04-29 13:34:39 +08:00
commit dee3a336ce
89 changed files with 33683 additions and 0 deletions

27
nodemon.json Normal file
View File

@@ -0,0 +1,27 @@
{
"watch": ["app.js", "config", "middleware", "api", "tool", "framework"],
"ext": "js,mjs,cjs,json",
"delay": 2000,
"legacyWatch": true,
"ignore": [
"node_modules/**",
"admin/**",
"logs/**",
"temp/**",
".git/**",
"*.log",
"*.xlsx",
"**/*.test.js",
"_doc/**",
"scripts/**",
"__tests__/**"
],
"watchOptions": {
"usePolling": true,
"interval": 1500,
"awaitWriteFinish": {
"stabilityThreshold": 1500,
"pollInterval": 200
}
}
}