tweaking tsconfig.json

This commit is contained in:
evilchili
2026-08-10 12:00:52 -07:00
parent 464dd32b8f
commit 4b05cb9acc
7 changed files with 36 additions and 119 deletions
+1 -5
View File
@@ -1,4 +1,3 @@
"use strict";
/*
* tokenizer.ts — markdown tokenizer.
*
@@ -11,8 +10,6 @@
* const tokens = tokenizer.tokenize('hello **bold** end');
* // [text "hello "] [open "**"] [text "bold"] [close "**"] [text " end"]
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.Tokenizer = void 0;
/**
* Characters that count as punctuation for flanking delimiter rules.
* A delimiter is left-flanking if preceded by whitespace/punctuation
@@ -45,7 +42,7 @@ const NAMED_ENTITIES = {
* ]);
* const tokens = tokenizer.tokenize('**bold**');
*/
class Tokenizer {
export class Tokenizer {
tags;
constructor(tags) {
this.tags = tags.ordered;
@@ -321,4 +318,3 @@ class Tokenizer {
return null;
}
}
exports.Tokenizer = Tokenizer;