Files
ontime/packages/types/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

21 lines
403 B
JSON

{
"extends": "../../tsconfig.common.json",
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node10",
"allowUnusedLabels": false,
"removeComments": true,
"preserveConstEnums": true,
"allowJs": true,
"declaration": true,
"outDir": "dist",
},
"include": [
"src/index.ts",
],
"exclude": [
"node_modules", "dist"
]
}