Files
ontime/apps/server/tsconfig.json
Carlos Valente da11ef64c2 refactor: roll mode
* chore: escalate stack trace to console

* refactor: event finding in roll

* docs: initial roll specification

* refactor: call to roll

* refactor: normalise index

* refactor: roll into next event

* refactor: hot reload on waiting to roll

* refactor: wait to roll next
2024-08-04 21:34:01 +02:00

20 lines
402 B
JSON

{
"compilerOptions": {
"strict": false,
"target": "ESNext",
"module": "Node16",
"moduleResolution": "Node16",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"esModuleInterop": true,
"skipLibCheck": true,
"types": ["vitest/globals"],
"outDir": "dist",
"experimentalDecorators": true,
},
"include": [
"src/**/*.ts",
"src/**/*.js",
],
}