mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-04 23:18:01 +00:00
22 lines
442 B
JSON
22 lines
442 B
JSON
{
|
|
"extends": "../../tsconfig.tests.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"types": ["vitest/globals"],
|
|
"outDir": "dist",
|
|
"experimentalDecorators": true,
|
|
"composite": true
|
|
},
|
|
"include": [
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts"
|
|
],
|
|
"references": [
|
|
{ "path": "./tsconfig.json" }
|
|
]
|
|
}
|