Skip to content

Commit 061ab3a

Browse files
committed
Fix tsconfig
1 parent cb6fe04 commit 061ab3a

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

tsconfig.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,25 @@
55
"typeRoots": [
66
"node_modules/@types"
77
],
8-
"types": [
9-
"node",
10-
"jest"
11-
],
128
"outDir": "./dist",
139
"removeComments": true,
1410
"declaration": true,
15-
"emitDeclarationOnly": true,
1611
"strict": true,
1712
"strictNullChecks": true,
1813
"strictFunctionTypes": true,
1914
"skipLibCheck": true,
20-
"forceConsistentCasingInFileNames": true
15+
"forceConsistentCasingInFileNames": true,
16+
"moduleResolution": "node",
17+
"esModuleInterop": true
2118
},
19+
"include": [
20+
"src/**/*"
21+
],
2222
"exclude": [
2323
"node_modules",
2424
"jest.config.ts",
2525
"test*/*",
2626
"dist",
2727
"**/*spec.ts"
2828
]
29-
}
29+
}

0 commit comments

Comments
 (0)