Skip to content

Commit

Permalink
Bump version, fix .tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
khola committed May 31, 2020
1 parent 66bffbb commit a666578
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 16,315 deletions.
24 changes: 24 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.js
.idea

# testing
/coverage


# misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local

npm-debug.log*
yarn-debug.log*
yarn-error.log*

storybook-static
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nordcloud/gnui",
"version": "0.2.8",
"version": "0.3.1",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "git://github.com/nordcloud/gnui.git",
Expand Down
18 changes: 4 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
Expand All @@ -18,14 +14,8 @@
"isolatedModules": true,
"declaration": true,
"outDir": "dist",
"jsx": "react",
"noEmit": true
"jsx": "react"
},
"include": [
"src/*"
],
"exclude": [
"node_modules",
"dist"
]
"include": ["src/*"],
"exclude": ["node_modules", "dist"]
}
Loading

0 comments on commit a666578

Please sign in to comment.