mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
27 lines
479 B
JSON
27 lines
479 B
JSON
{
|
|
"extends": "../../tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"allowUnusedLabels": false,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"allowJs": true,
|
|
"baseUrl": "src"
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts",
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.tests.json"
|
|
}
|
|
]
|
|
}
|