mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-07 08:23:55 +00:00
2df3d376ad
* wip: create simple timer class * refactor: service to manage extra timers * wip:ui for controlling the extra timer --------- Co-authored-by: arc-alex <ac@omnivox.dk>
19 lines
397 B
JSON
19 lines
397 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"allowSyntheticDefaultImports": true,
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"types": ["vitest/globals"],
|
|
"outDir": "dist",
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": ["node_modules", "build"],
|
|
}
|