We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 796cbc7 commit 3b3401eCopy full SHA for 3b3401e
agents/src/tokenize/basic/hyphenator.ts
@@ -77,7 +77,7 @@ class Hyphenator {
77
78
const pieces = [''];
79
for (let i = 0; i < word.length; i++) {
80
- pieces[pieces.length - 1] += word[i];
+ pieces[pieces.length - 1]! += word[i];
81
if (points[i + 2]! % 2) {
82
pieces.push('');
83
}
tsconfig.json
@@ -10,9 +10,6 @@
10
"moduleResolution": "node16",
11
"strict": true,
12
"esModuleInterop": true,
13
- "emitDecoratorMetadata": true,
14
- "experimentalDecorators": true,
15
- "allowSyntheticDefaultImports": true,
16
"skipLibCheck": true,
17
"forceConsistentCasingInFileNames": true,
18
"verbatimModuleSyntax": true,
0 commit comments