Skip to content

Commit e1908d2

Browse files
committed
chore: add typechecking to build process
1 parent c79a900 commit e1908d2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

apps/juxt-ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"dev": "tsup --watch --onSuccess \"node --enable-source-maps dist/server.js\"",
88
"lint": "eslint .",
99
"lint:fix": "eslint . --fix",
10-
"build": "npm run lint && tsup",
10+
"build": "tsup && tsc --noEmit",
1111
"start": "node --enable-source-maps dist/server.js"
1212
},
1313
"repository": {

apps/juxt-ui/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"module": "ES2022",
77
"esModuleInterop": true,
88
"moduleResolution": "bundler",
9+
"skipLibCheck": true,
910
"baseUrl": "src",
1011
"outDir": "dist",
1112
"allowJs": true,

0 commit comments

Comments
 (0)