Skip to content

Commit

Permalink
refactor: Moving placement of noEmit
Browse files Browse the repository at this point in the history
  • Loading branch information
rschristian authored and Vlad Shilov committed Sep 9, 2020
1 parent eaa9309 commit 096d627
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -13,7 +13,7 @@
"size": "npm run build && size-limit",
"test": "jest tests",
"build": "del-cli 'dist/*' && microbundle build --entry src/index.ts --jsx React.createElement --name react-colorful --css-modules true --tsconfig tsconfig.build.json",
"check-types": "tsc",
"check-types": "tsc --noEmit true",
"prepublishOnly": "npm run build",
"start-demo": "parcel demo/src/index.html --out-dir demo/dist --open",
"build-demo": "del-cli 'demo/dist/*' && parcel build demo/src/index.html --out-dir demo/dist --public-url /react-colorful/",
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Expand Up @@ -7,8 +7,7 @@
"jsxFactory": "React.createElement",
"moduleResolution": "node",
"declaration": true,
"strict": true,
"noEmit": true
"strict": true
},
"include": ["src", "test", "demo/src"]
}

0 comments on commit 096d627

Please sign in to comment.