2022-12-03 13:08:49 +03:00
|
|
|
{
|
2023-07-12 21:26:12 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": ".",
|
|
|
|
"target": "es2020",
|
|
|
|
"lib": ["es2020"], // Set explicitly to remove DOM
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"strict": true,
|
|
|
|
"allowSyntheticDefaultImports": false,
|
|
|
|
"allowUnreachableCode": false,
|
|
|
|
"esModuleInterop": false,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUncheckedIndexedAccess": false,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true
|
|
|
|
},
|
|
|
|
"include": ["src"],
|
|
|
|
"exclude": ["node_modules", "*.d.ts"]
|
|
|
|
}
|