mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 07:28:01 +00:00
1dfe5c980d
* refactor: collect common tsconfig settings * chore: module and target should be lower case
22 lines
467 B
JSON
22 lines
467 B
JSON
{
|
|
"extends": "../../tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowUnusedLabels": false,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"allowJs": true,
|
|
"baseUrl": "src",
|
|
"types": ["vitest/globals"]
|
|
},
|
|
"include": [
|
|
"src",
|
|
"../node_modules/.pnpm/vitest@0.26.3/node_modules/vitest/globals.d.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
]
|
|
}
|