Skip to content

Commit 1f82455

Browse files
committed
Some updates
1 parent 721c044 commit 1f82455

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
{
22
"name": "js-messages",
3-
"version": "0.1.18",
3+
"version": "0.1.19",
44
"license": "LGPL-3.0",
55
"homepage": "https://github.com/js-works/js-messages",
66
"main": "index.js",
7-
"types": "dist/types/js-messages.d.ts",
7+
"types": "dist/types/index.d.ts",
88
"module": "dist/js-messages.esm.production.js",
99
"unpkg": "dist/js-messages.umd.production.js",
1010
"jsdelivr": "dist/js-messages.umd.production.js",

rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export default configs
2121

2222
function createConfig(moduleFormat, productive) {
2323
return {
24-
input: 'src/main/js-messages.ts',
24+
input: 'src/main/index.ts',
2525

2626
output: {
2727
file: productive

tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "ES5",
4+
"strict": true,
45
"noImplicitAny": true,
56
"jsx": "react",
67
"removeComments": true,
@@ -16,6 +17,6 @@
1617
]
1718
},
1819
"files": [
19-
"src/main/js-messages.ts"
20+
"src/main/index.ts"
2021
]
2122
}

0 commit comments

Comments
 (0)