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

16 lines
375 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",
"src/admin",
"src/**/*.spec.ts",
"test/**/payload-types.ts"
],
"watch": ["src/**/*.ts", "../../test/", "../../packages/**/*.ts"],
"stdin": false
}