mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
30 lines
556 B
JSON
30 lines
556 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",
|
|
"sourceMap": true,
|
|
"baseUrl": "src",
|
|
},
|
|
"include": [
|
|
"src",
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts",
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.tests.json"
|
|
}
|
|
]
|
|
}
|