Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
noEmit not allowed in tsconfig, moved it to build step
  • Loading branch information
Juice10 committed Oct 21, 2022
commit b9f43b82989ab497a4d5affc11dee489009b29cf
2 changes: 1 addition & 1 deletion packages/types/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.1",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"build": "tsc -noEmit && vite build",
"check-types": "tsc -noEmit",
"prepublish": "npm run build",
"lint": "yarn eslint src/**/*.ts"
Expand Down
3 changes: 1 addition & 2 deletions packages/types/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@
"lib": ["es6", "dom"],
"skipLibCheck": true,
"declaration": true,
"importsNotUsedAsValues": "error",
"noEmit": true
"importsNotUsedAsValues": "error"
},
"compileOnSave": true,
"exclude": ["test"],
Expand Down