Skip to content

Commit a666578

Browse files
author
Jakub Holak
committed
Bump version, fix .tsconfig
1 parent 66bffbb commit a666578

File tree

4 files changed

+29
-16315
lines changed

4 files changed

+29
-16315
lines changed

.npmignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.idea
8+
9+
# testing
10+
/coverage
11+
12+
13+
# misc
14+
.DS_Store
15+
.env.local
16+
.env.development.local
17+
.env.test.local
18+
.env.production.local
19+
20+
npm-debug.log*
21+
yarn-debug.log*
22+
yarn-error.log*
23+
24+
storybook-static

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nordcloud/gnui",
3-
"version": "0.2.8",
3+
"version": "0.3.1",
44
"main": "dist/index.js",
55
"types": "dist/index.d.ts",
66
"repository": "git://github.com/nordcloud/gnui.git",

tsconfig.json

Lines changed: 4 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,7 @@
11
{
22
"compilerOptions": {
33
"target": "es5",
4-
"lib": [
5-
"dom",
6-
"dom.iterable",
7-
"esnext"
8-
],
4+
"lib": ["dom", "dom.iterable", "esnext"],
95
"allowJs": true,
106
"skipLibCheck": true,
117
"esModuleInterop": true,
@@ -18,14 +14,8 @@
1814
"isolatedModules": true,
1915
"declaration": true,
2016
"outDir": "dist",
21-
"jsx": "react",
22-
"noEmit": true
17+
"jsx": "react"
2318
},
24-
"include": [
25-
"src/*"
26-
],
27-
"exclude": [
28-
"node_modules",
29-
"dist"
30-
]
19+
"include": ["src/*"],
20+
"exclude": ["node_modules", "dist"]
3121
}

0 commit comments

Comments
 (0)