We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4bcdf2 commit 66f53bfCopy full SHA for 66f53bf
src/LoggerWithoutCallSite.ts
@@ -560,6 +560,8 @@ export class LoggerWithoutCallSite {
560
? ` ${logObject.typeName}.${logObject.methodName}`
561
: logObject.functionName != null
562
? ` ${logObject.functionName}`
563
+ : logObject.typeName !== null
564
+ ? `${logObject.typeName}.<anonymous>`
565
: ""
566
: "";
567
tsconfig.types.json
@@ -2,11 +2,11 @@
2
"extends": "./tsconfig.json",
3
"compilerOptions": {
4
"module": "esnext",
5
- "target": "es2015",
+ "target": "es2019",
6
"removeComments": false,
7
"declaration": true,
8
"declarationMap": true,
9
"declarationDir": "dist/types",
10
"emitDeclarationOnly": true
11
}
12
-}
+}
0 commit comments