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 7cc3d02 commit 8f0277aCopy full SHA for 8f0277a
package.json
@@ -17,6 +17,7 @@
17
"author": "",
18
"license": "MIT",
19
"main": "dist/index.js",
20
+ "types": "dist/index.d.ts",
21
"files": [
22
"dist"
23
],
tsconfig.json
@@ -1,15 +1,13 @@
1
{
2
"compilerOptions": {
3
"module": "commonjs",
4
+ "declaration": true,
5
"esModuleInterop": true,
6
"target": "es6",
7
"noImplicitAny": false,
8
"moduleResolution": "node",
9
"outDir": "dist",
- "baseUrl": ".",
10
- "paths": {
11
- "*": ["node_modules/*", "src/types/*"]
12
- }
+ "baseUrl": "."
13
},
14
"include": ["src/**/*"]
15
}
0 commit comments