mirror of
https://github.com/logos-messaging/js-waku.git
synced 2026-01-02 13:53:12 +00:00
* feat(browser-tests): simplify, refactor, update dockerized browser node * Update packages/browser-tests/web/index.ts * fix: remove comments and console.logs from tests * fix: add temporary logging * fix: debugging static sharding * fix: replace console with logger * fix: remove use of any * fix: log dial error * fix: replace any with libp2p options * fix: remove unused logic around sourcing address.env * fix: uncomment log * fix: add more logging and fix tests * feat: add types for test-config * fix: add types to server.ts * fix: remove more uses of any * fix: remove use of any in endpoint handlers
20 lines
520 B
JSON
20 lines
520 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "NodeNext",
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"strict": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"outDir": "dist",
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"lib": ["ES2020", "DOM"],
|
|
"typeRoots": ["./node_modules/@types", "./types"]
|
|
},
|
|
"include": ["src/server.ts", "types/**/*.d.ts"],
|
|
"exclude": ["node_modules", "dist", "web"]
|
|
}
|