mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-03 06:28:01 +00:00
c7d8b137ca
* chore: only run release action if we have a tag * chore: typescript 6 is out of beta * chore: update flaky test * chore: update pnpm * chore: update playwright and node types * chore: migrate tsup to tsdown * chore: update node to node 22.22.2(LTS) * chore: fix lockfile --------- Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
25 lines
484 B
JSON
25 lines
484 B
JSON
{
|
|
"extends": "../../tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "preserve",
|
|
"moduleResolution": "bundler",
|
|
"allowUnusedLabels": false,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"allowJs": true,
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"rootDir": "./src",
|
|
"sourceMap": true
|
|
},
|
|
"include": [
|
|
"src",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts",
|
|
]
|
|
}
|