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