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 3247b54 commit 0e0dfaeCopy full SHA for 0e0dfae
packages/redis/package.json
@@ -4,6 +4,9 @@
4
"description": "Redis cache provider for CommandKit",
5
"main": "dist/index.js",
6
"types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
"scripts": {
11
"build": "tsc"
12
},
@@ -30,4 +33,4 @@
30
33
"tsconfig": "workspace:*",
31
34
"typescript": "^5.7.3"
32
35
}
-}
36
+}
packages/redis/tsconfig.json
@@ -7,7 +7,8 @@
"declaration": true,
"inlineSourceMap": true,
"target": "ES2020",
- "module": "CommonJS"
+ "module": "CommonJS",
+ "noEmit": false
13
"include": ["src/**/*.ts"],
14
"exclude": ["node_modules"]
packages/tsconfig/base.json
@@ -10,6 +10,5 @@
"module": "CommonJS",
"isolatedModules": true,
- "noEmit": true
15
0 commit comments