Skip to content

Commit

Permalink
fix: build for function-utils
Browse files Browse the repository at this point in the history
  • Loading branch information
dominicbartl committed Nov 2, 2023
1 parent 0e6275a commit e38aa25
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/firestore/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"baseUrl": "./",
"types": [
"node",
"mocha",
"mocha"
],
"paths": {
"firestore-storage-core": ["../core"]
Expand Down
18 changes: 12 additions & 6 deletions packages/function-utils/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,20 @@
{
"extends": "../tsconfig-base.json",
"extends": "../tsconfig-base.json",
"compilerOptions": {
"outDir": "./dist",
"rootDir": "./src",
"baseUrl": "./",
"strict": true,
"lib": [
"es6", "dom"
]
"types": [
"node",
"mocha",
],
"paths": {
"firestore-storage-core": ["../core"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
"references": [
{"path": "../core" }
]
}

0 comments on commit e38aa25

Please sign in to comment.