Skip to content

Commit

Permalink
chore: tsc --noEmit on build
Browse files Browse the repository at this point in the history
  • Loading branch information
NextFire committed Dec 2, 2024
1 parent c1b7a42 commit 5c0427a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"NextFire <[email protected]>"
],
"scripts": {
"build": "nitro build",
"build": "tsc --noEmit && nitro build",
"dev": "nitro dev",
"prepare": "nitro prepare",
"preview": "node .output/server/index.mjs"
Expand All @@ -23,6 +23,7 @@
"nitropack": "2.10.4",
"oidc-provider": "8.6.0",
"psl": "1.15.0",
"typescript": "5.6.2",
"wildcard": "2.0.1"
}
}
5 changes: 4 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
// https://nitro.unjs.io/guide/typescript
{
"extends": "./.nitro/types/tsconfig.json"
"extends": "./.nitro/types/tsconfig.json",
"compilerOptions": {
"skipLibCheck": true
}
}

0 comments on commit 5c0427a

Please sign in to comment.