Use stderr for logging

This commit is contained in:
Andras Schmelczer 2025-11-19 22:39:06 +00:00
parent c08feba0ad
commit e2189d4dbe
2 changed files with 17 additions and 7 deletions

View file

@ -1,8 +1,11 @@
{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020"],
"target": "ESNext",
"module": "ESNext",
"lib": [
"DOM", // to get `fetch` & `WebSocket`
"ES2024"
],
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
@ -15,6 +18,5 @@
"declarationMap": true,
"sourceMap": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
"exclude": ["dist"]
}