Add nodemon for ui developing.

This commit is contained in:
Googol Lee
2024-07-07 10:05:26 +02:00
committed by GitHub
parent eab10af4a3
commit 2f8f01b6d3
3 changed files with 261 additions and 82 deletions

9
ui/nodemon.json Normal file
View File

@@ -0,0 +1,9 @@
{
"watch": ["./**"],
"exec": "npm start",
"ext": "ts,json,tsx,js,html,css",
"ignore": ["./dist/"],
"execMap": {
"ts": "ts-node-esm"
}
}