2021-08-25 22:47:06 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2022-12-20 00:08:58 +03:00
|
|
|
"module": "Node16",
|
|
|
|
"moduleResolution": "Node16",
|
2021-08-25 22:47:06 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"declaration": true,
|
|
|
|
"stripInternal": true,
|
|
|
|
"noEmitHelpers": false,
|
2024-04-09 19:38:16 +03:00
|
|
|
"target": "ES2022",
|
2021-08-25 22:47:06 +03:00
|
|
|
"types": ["node"],
|
2024-04-09 19:38:16 +03:00
|
|
|
"lib": ["es2022", "DOM"],
|
2021-08-25 22:47:06 +03:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
"newLine": "LF"
|
|
|
|
}
|
|
|
|
}
|