mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-01-12 06:53:32 +00:00
19 lines
477 B
JSON
19 lines
477 B
JSON
{
|
|
"watch": ["./","../Common/Server", "../Common/Types", "../Common/Utils", "../Common/Models"],
|
|
"ext": "ts,tsx",
|
|
"ignore": [
|
|
"./node_modules/**",
|
|
"./public/**",
|
|
"./bin/**",
|
|
"./build/**"
|
|
],
|
|
"watchOptions": {
|
|
"useFsEvents": false,
|
|
"interval": 500
|
|
},
|
|
"env": {
|
|
"TS_NODE_TRANSPILE_ONLY": "1",
|
|
"TS_NODE_FILES": "false"
|
|
},
|
|
"exec": "node -r ts-node/register/transpile-only Index.ts"
|
|
}
|