trilium/nodemon.json
2024-02-17 13:32:43 +02:00

13 lines
271 B
JSON

{
"restartable": "rs",
"ignore": [".git", "node_modules/**/node_modules", "src/public/"],
"verbose": false,
"exec": "ts-node",
"watch": ["src/"],
"signal": "SIGTERM",
"env": {
"NODE_ENV": "development"
},
"ext": "ts,js,json"
}