2021-07-30 05:23:04 +02:00
|
|
|
{
|
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
2021-10-13 16:31:36 +02:00
|
|
|
"newLine": "LF",
|
2021-08-09 07:49:37 +02:00
|
|
|
"target": "es2018",
|
2021-07-30 05:23:04 +02:00
|
|
|
"module": "commonjs",
|
2021-08-09 07:49:37 +02:00
|
|
|
"lib": [
|
2021-08-23 05:33:24 +02:00
|
|
|
"es2020",
|
2023-01-28 06:39:23 +01:00
|
|
|
"DOM"
|
2021-08-09 07:49:37 +02:00
|
|
|
],
|
2023-10-13 16:42:45 +02:00
|
|
|
"declaration": false,
|
|
|
|
"removeComments": true,
|
2021-07-30 05:23:04 +02:00
|
|
|
"preserveConstEnums": true,
|
|
|
|
"sourceMap": false,
|
2024-06-25 12:08:02 +02:00
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true
|
2021-07-30 05:23:04 +02:00
|
|
|
},
|
|
|
|
"files": [
|
2021-08-23 05:33:24 +02:00
|
|
|
"./src/util.ts"
|
2021-07-30 05:23:04 +02:00
|
|
|
]
|
|
|
|
}
|