mirror of
https://github.com/zkitter/zkitter-js.git
synced 2026-01-08 21:18:10 -05:00
* replace bytewise with charwise * adding chat * fix build * fix lint and prettier * implement direct chat message; add basic queries for chat ids and messages * linter fix * publish chat topics * add Filter type for pubsub and query * linter fix * add db for storing own chats * fix ecdh shared secret * linter fix * update types
22 lines
539 B
JSON
22 lines
539 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"baseUrl": ".",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"module": "esnext",
|
|
"target": "es2015",
|
|
"lib": ["esnext", "dom"],
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"strictPropertyInitialization": false
|
|
},
|
|
"include": ["src", "types"]
|
|
}
|