mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-05 23:43:57 +00:00
1dfe5c980d
* refactor: collect common tsconfig settings * chore: module and target should be lower case
21 lines
403 B
JSON
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"
|
|
]
|
|
}
|