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 5aa5dde commit f94395cCopy full SHA for f94395c
package.json
@@ -24,9 +24,10 @@
24
"semantic-release",
25
"typedoc"
26
],
27
- "main": "./dist/index.js",
+ "main": "dist/src/index.js",
28
+ "types": "dist/src/index.d.ts",
29
"files": [
- "dist/**/*"
30
+ "dist/src/**/*"
31
32
"scripts": {
33
"build:watch": "tsc --watch --project tsconfig.json",
@@ -59,9 +60,10 @@
59
60
},
61
"typedocOptions": {
62
"entryPoints": [
- "./src"
63
+ "src"
64
- "tsconfig": "./tsconfig.json"
65
+ "tsconfig": "tsconfig.json",
66
+ "headings": false
67
68
"release": {
69
"plugins": [
tsconfig.json
@@ -5,6 +5,7 @@
5
"lib": ["ESNext"],
6
"baseUrl": "src",
7
"module": "CommonJS",
8
+ "declaration": true,
9
"outDir": "dist"
10
11
"include": ["src/**/*.ts", "test/**/*.ts"]
0 commit comments