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.
strict
tsconfig.json
1 parent 8726cd8 commit 1d0e9e1Copy full SHA for 1d0e9e1
test.js
@@ -5,6 +5,7 @@ import {toString} from './index.js'
5
test('toString()', function (t) {
6
t.throws(
7
function () {
8
+ // @ts-expect-error: runtime.
9
toString()
10
},
11
/undefined/,
tsconfig.json
@@ -10,6 +10,7 @@
"declaration": true,
"emitDeclarationOnly": true,
12
"allowSyntheticDefaultImports": true,
13
- "skipLibCheck": true
+ "skipLibCheck": true,
14
+ "strict": true
15
}
16
0 commit comments