mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-04 15:08:01 +00:00
1dfe5c980d
* refactor: collect common tsconfig settings * chore: module and target should be lower case
19 lines
405 B
JSON
19 lines
405 B
JSON
{
|
|
"extends": "../../tsconfig.common.json",
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"noImplicitReturns": false, //TODO: fix this
|
|
"allowJs": true,
|
|
"esModuleInterop": true,
|
|
"types": ["vitest/globals"],
|
|
"outDir": "dist",
|
|
"experimentalDecorators": true,
|
|
},
|
|
"include": [
|
|
"src/**/*.ts",
|
|
"src/**/*.js",
|
|
],
|
|
}
|