0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/cloud/nodemon.json

16 lines
315 B
JSON
Raw Normal View History

2023-02-18 00:34:52 -05:00
{
"exec": "tsc -p tsconfig.build.json --incremental && node ./build/index.js || exit 1",
"ignore": [
"node_modules/**/node_modules",
"../integration-tests/"
],
"watch": [
"./src/",
"../core/src/",
2023-02-18 00:34:52 -05:00
"./node_modules/",
"../../.env"
],
"ext": "json,js,jsx,ts,tsx",
"delay": 1000
2023-02-18 00:34:52 -05:00
}