Skip to content

Commit c9c6770

Browse files
committed
fix(auth-client): Add 'declaration: true' compile option
Because: * Some packages can't locate fxa-auth-client This commit: * Adds 'declaration: true' to compilerOptions tsconfig.cjs.json
1 parent ba97e98 commit c9c6770

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed
+3-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"extends": "./tsconfig.base.json",
33
"compilerOptions": {
4+
"declaration": true,
45
"module": "commonjs",
5-
"outDir": "./dist/server/cjs",
6-
},
6+
"outDir": "./dist/server/cjs"
7+
}
78
}

0 commit comments

Comments
 (0)