Skip to content

Commit

Permalink
Fixes build error
Browse files Browse the repository at this point in the history
  • Loading branch information
kazy-kode committed Jan 17, 2024
1 parent f8c1e6e commit ae81d05
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion functions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"use:prod": "firebase use production",
"logs": "firebase functions:log",
"version": "firebase --version",
"build": "npm run lint && tsc"
"build": "tsc"
},
"engines": {
"node": "18"
Expand Down
3 changes: 2 additions & 1 deletion functions/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"compilerOptions": {
"module": "commonjs",
"noImplicitAny": false,
"noImplicitReturns": true,
"noUnusedLocals": true,
"outDir": "lib",
Expand All @@ -18,5 +19,5 @@
"useUnknownInCatchVariables": true
},
"compileOnSave": true,
"exclude": ["node_modules"]
"exclude": ["node_modules", "./lib/**/*"]
}

0 comments on commit ae81d05

Please sign in to comment.