Files
ontime/apps/server/tsconfig.json
T
Alex Christoffer Rasmussen 1dfe5c980d refactor: collect common tsconfig (#1794)
* refactor: collect common tsconfig settings

* chore: module and target should be lower case
2025-09-26 21:34:01 +02:00

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",
],
}