Skip to content

Commit

Permalink
fix(auth-client): Add 'declaration: true' compile option
Browse files Browse the repository at this point in the history
Because:
* Some packages can't locate fxa-auth-client

This commit:
* Adds 'declaration: true' to compilerOptions tsconfig.cjs.json
  • Loading branch information
LZoog committed Aug 2, 2023
1 parent ba97e98 commit c9c6770
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions packages/fxa-auth-client/tsconfig.cjs.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"outDir": "./dist/server/cjs",
},
"outDir": "./dist/server/cjs"
}
}

0 comments on commit c9c6770

Please sign in to comment.