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 38d67fe commit c63e1e1Copy full SHA for c63e1e1
package.json
@@ -1,8 +1,9 @@
1
{
2
"name": "string-cipher",
3
- "version": "1.0.3",
+ "version": "1.0.4",
4
"description": "Simple string encryption and decryption functions",
5
"main": "./dist/index.js",
6
+ "types": "dist/index.d.ts",
7
"repository": {
8
"type": "git",
9
"url": "https://github.com/limplash/string-cipher.git"
tsconfig.json
@@ -1,13 +1,14 @@
"compilerOptions": {
"module": "commonjs",
- "target": "es2015",
+ "target": "es6",
"lib": [
"es2020"
],
"moduleResolution": "node",
"baseUrl": "./",
10
- "outDir": "./dist"
+ "outDir": "./dist",
11
+ "declaration": true
12
},
13
"exclude": [
14
"node_modules",
0 commit comments