2021-05-12 06:35:00 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"allowUnusedLabels": false,
|
2022-02-08 20:19:22 +00:00
|
|
|
"useUnknownInCatchVariables": false,
|
2021-05-12 06:35:00 +00:00
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": ["DOM", "ES2019"],
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"pretty": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "ES2019",
|
|
|
|
"types": ["node", "jest"]
|
|
|
|
}
|
|
|
|
}
|