mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2026-05-25 12:04:22 +00:00
f78ec3584f
* mobile: webrtc calls in webview (typescript WIP) * typsecript compiles * fix error messages * TS works in chrome * include ICE candidates into offer/answer, report connection state changes to host, end call on disconnection * refactor, readme for .js file
22 lines
516 B
JSON
22 lines
516 B
JSON
{
|
|
"include": ["src"],
|
|
"compilerOptions": {
|
|
"declaration": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"lib": ["ES2018", "DOM"],
|
|
"module": "CommonJS",
|
|
"moduleResolution": "Node",
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"target": "ES2018"
|
|
}
|
|
}
|