Files
payload/nodemon.json
2023-10-05 16:49:58 -04:00

16 lines
382 B
JSON

{
"$schema": "https://json.schemastore.org/nodemon.json",
"exec": "ts-node ./test/dev.ts -- -I",
"ext": "ts,js,json",
"ignore": [
".git",
"node_modules",
"node_modules/**/node_modules",
"packages/payload/src/admin",
"packages/payload/src/**/*.spec.ts",
"test/**/payload-types.ts"
],
"watch": ["./test/", "./packages/**/*.ts"],
"stdin": false
}