Files
speckle-server/packages/server/nodemon.json
T
Kristaps Fabians Geikins 4b06f42db7 chore(server): run TS files directly (no compilation) (#5134)
* sort of works

* type fixes

* added option to run old way too
2025-07-23 11:20:40 +02:00

22 lines
415 B
JSON

{
"signal": "SIGKILL",
"watch": [
"./modules",
"./assets",
"./db",
"./healthchecks",
"./observability",
"./app.ts",
"./bootstrap.ts",
"./knexfile.ts",
"./root.js",
".env",
"multiregion.json"
],
"ext": "js,ts,graphql,env,gql",
"execMap": {
"ts": "node --experimental-strip-types --experimental-transform-types --import ./esmLoader.js"
},
"delay": 1000
}