mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
27 lines
512 B
JSON
27 lines
512 B
JSON
{
|
|
"extends": "../../tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"noImplicitReturns": false, //TODO: fix this
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"outDir": "dist",
|
|
"experimentalDecorators": true,
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
],
|
|
"exclude": [
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts",
|
|
],
|
|
"references": [
|
|
{
|
|
"path": "./tsconfig.tests.json"
|
|
}
|
|
]
|
|
}
|