2019-05-31 15:56:07 +00:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2022-12-14 19:48:57 +00:00
|
|
|
"module": "esnext",
|
2025-07-16 19:44:57 +00:00
|
|
|
"target": "es2022",
|
2022-12-14 19:48:57 +00:00
|
|
|
"moduleResolution": "node",
|
2025-07-16 19:44:57 +00:00
|
|
|
"downlevelIteration": true,
|
2022-12-14 19:48:57 +00:00
|
|
|
"esModuleInterop": true,
|
2019-05-31 15:56:07 +00:00
|
|
|
"inlineSources": true,
|
2025-07-16 19:44:57 +00:00
|
|
|
"declaration": true,
|
2019-05-31 15:56:07 +00:00
|
|
|
"noEmitOnError": false,
|
2025-07-16 19:44:57 +00:00
|
|
|
"stripInternal": true,
|
2019-05-31 15:56:07 +00:00
|
|
|
"strict": true,
|
2025-07-16 19:44:57 +00:00
|
|
|
"sourceMap": true,
|
2021-06-07 15:09:00 +00:00
|
|
|
"noImplicitOverride": true,
|
2019-05-31 15:56:07 +00:00
|
|
|
"lib": [
|
|
|
|
|
"es5",
|
|
|
|
|
"dom",
|
|
|
|
|
"es2015.iterable",
|
|
|
|
|
"es2015.promise",
|
|
|
|
|
"es2015.symbol",
|
|
|
|
|
"es2015.symbol.wellknown"
|
2019-10-15 01:00:17 +00:00
|
|
|
],
|
2019-05-31 15:56:07 +00:00
|
|
|
},
|
2022-02-12 23:53:31 +00:00
|
|
|
}
|