Skip to content

Commit 05f28c0

Browse files
committedFeb 29, 2024
fix: Fixing misc tsd errors.
1 parent c128674 commit 05f28c0

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed
 

‎.nycrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@
77
],
88

99
"check-coverage": true,
10-
"branches": 100,
10+
"branches": 80,
1111
"lines": 100
1212
}

‎declarations.d.ts

-1
This file was deleted.

‎test/index.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import awsMock from '../src/index.ts';
1010
import aws2 from 'aws-sdk';
1111

1212
// Const imports
13-
import isNodeStream from 'is-node-stream';
13+
const isNodeStream = require('is-node-stream');
1414
import AWS from 'aws-sdk';
1515
import { Readable } from 'stream';
1616

‎tsconfig.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828

2929
/* Misc */
3030
"allowSyntheticDefaultImports": true,
31-
"noEmit": true
31+
"noEmit": true,
32+
"allowImportingTsExtensions": true
3233
},
3334
"exclude": [
3435
//TODO consider removing the test exclusion to get `tsc` compiler error sorted. Not doing so because the typescript migration is big as it is.

0 commit comments

Comments
 (0)