budibase/packages/server/nodemon.json

20 lines
369 B
JSON
Raw Normal View History

{
2023-08-01 18:06:36 +02:00
"watch": [
"src",
"../backend-core/src",
"../pro/src",
"../types/src",
"../shared-core/src",
"../string-templates/src"
2023-03-02 16:34:52 +01:00
],
2023-12-14 10:04:22 +01:00
"ext": "js,ts,json,svelte",
"ignore": [
"**/*.spec.ts",
"**/*.spec.js",
"../*/dist/**/*",
"client/**/*",
"builder/**/*"
],
"exec": "yarn build && node --no-node-snapshot ./dist/index.js"
2023-03-02 16:34:52 +01:00
}