Files
zkitter-js/tsconfig.json
tsukino 42e294c962 1.1.11 (#4)
* 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
2023-03-22 13:45:14 +08:00

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"]
}