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.
1 parent cb6fe04 commit 061ab3aCopy full SHA for 061ab3a
tsconfig.json
@@ -5,25 +5,25 @@
5
"typeRoots": [
6
"node_modules/@types"
7
],
8
- "types": [
9
- "node",
10
- "jest"
11
- ],
12
"outDir": "./dist",
13
"removeComments": true,
14
"declaration": true,
15
- "emitDeclarationOnly": true,
16
"strict": true,
17
"strictNullChecks": true,
18
"strictFunctionTypes": true,
19
"skipLibCheck": true,
20
- "forceConsistentCasingInFileNames": true
+ "forceConsistentCasingInFileNames": true,
+ "moduleResolution": "node",
+ "esModuleInterop": true
21
},
+ "include": [
+ "src/**/*"
+ ],
22
"exclude": [
23
"node_modules",
24
"jest.config.ts",
25
"test*/*",
26
"dist",
27
"**/*spec.ts"
28
]
29
-}
+}
0 commit comments