Skip to content

Commit c378371

Browse files
committed
rm c.log
1 parent 14d2b55 commit c378371

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/index.ts

-1
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,6 @@ function* lexer(str: string): Generator<LexToken, LexToken> {
167167
const char = chars[i];
168168

169169
if (INVALID_PATTERN_CHARS.includes(char)) {
170-
console.log({ char });
171170
throw new TypeError(
172171
`Only "|" is allowed as a special character in patterns at ${i}: ${DEBUG_URL}`,
173172
);

tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"extends": "@borderless/ts-scripts/configs/tsconfig.json",
33
"compilerOptions": {
44
"target": "ES2015",
5-
"lib": ["ES2015"],
5+
"lib": ["ES2015", "DOM"],
66
"rootDir": "src",
77
"outDir": "dist",
88
"module": "NodeNext",

0 commit comments

Comments
 (0)