mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-04-01 00:56:05 +00:00
24 lines
559 B
JSON
24 lines
559 B
JSON
{
|
|
"include": ["src"],
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["ES2022"],
|
|
"module": "Node16",
|
|
"moduleResolution": "Node16",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noEmitOnError": true,
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "ES2022",
|
|
"types": ["node"]
|
|
}
|
|
}
|