bun-router 0.3.6 → 0.3.7

Sign up to get free protection for your applications and to get access to all the features.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/tsconfig.json +2 -0
package/package.json CHANGED
@@ -8,5 +8,5 @@
8
8
  "peerDependencies": {
9
9
  "typescript": "^5.0.0"
10
10
  },
11
- "version": "0.3.6"
11
+ "version": "0.3.7"
12
12
  }
package/tsconfig.json CHANGED
@@ -1,5 +1,6 @@
1
1
  {
2
2
  "compilerOptions": {
3
+ "declaration": true,
3
4
  "lib": ["ESNext"],
4
5
  "module": "esnext",
5
6
  "target": "esnext",
@@ -15,6 +16,7 @@
15
16
  "allowJs": true,
16
17
  "noEmit": true,
17
18
  "types": [
19
+ "./index.d.ts",
18
20
  "bun-types" // add Bun global
19
21
  ]
20
22
  }