2022-04-01 18:45:11 +03:00
|
|
|
{
|
2023-02-25 19:46:33 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2015",
|
|
|
|
"module": "commonjs",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"preserveConstEnums": true,
|
2023-06-08 08:15:57 +03:00
|
|
|
"sourceMap": true,
|
|
|
|
"noEmit": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"declaration": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": false,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"strictPropertyInitialization": false,
|
2023-06-16 07:37:08 +03:00
|
|
|
"skipLibCheck": true,
|
2023-08-29 20:05:59 +03:00
|
|
|
"useUnknownInCatchVariables": false
|
2023-02-25 19:46:33 +03:00
|
|
|
},
|
2023-08-29 23:02:04 +03:00
|
|
|
"exclude": ["node_modules"]
|
2022-04-06 18:28:56 +03:00
|
|
|
}
|