0
0
mirror of https://github.com/louislam/uptime-kuma.git synced 2024-11-22 11:47:30 +01:00
uptime-kuma/tsconfig.json

20 lines
380 B
JSON
Raw Normal View History

{
"compileOnSave": true,
"compilerOptions": {
2021-10-13 16:31:36 +02:00
"newLine": "LF",
2021-08-09 07:49:37 +02:00
"target": "es2018",
"module": "commonjs",
2021-08-09 07:49:37 +02:00
"lib": [
2021-08-23 05:33:24 +02:00
"es2020",
"DOM",
2021-08-09 07:49:37 +02:00
],
2021-09-21 00:48:26 +02:00
"removeComments": false,
"preserveConstEnums": true,
"sourceMap": false,
2021-08-23 05:33:24 +02:00
"strict": true
},
"files": [
2021-08-23 05:33:24 +02:00
"./src/util.ts"
]
}