2020-02-07 19:41:08 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"removeComments": false,
|
|
|
|
"preserveConstEnums": true,
|
2022-11-03 08:10:12 +08:00
|
|
|
"target": "es2020",
|
|
|
|
"strict": true,
|
2020-02-07 19:41:08 +08:00
|
|
|
"noUnusedParameters": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"outDir": "out",
|
|
|
|
"sourceMap": true,
|
|
|
|
"lib": [
|
2023-12-19 23:03:03 +08:00
|
|
|
"esnext", // for #201187
|
2020-02-07 19:41:08 +08:00
|
|
|
"dom"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules"
|
|
|
|
]
|
|
|
|
}
|