mirror of
https://github.com/OneUptime/oneuptime.git
synced 2026-04-06 00:32:12 +02:00
20 lines
477 B
JSON
20 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"
|
|
}
|