Skip to content

Commit b690929

Browse files
committed
chore(repo): configure TypeScript project references
1 parent c604822 commit b690929

File tree

3 files changed

+22
-0
lines changed

3 files changed

+22
-0
lines changed

package-lock.json

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/functions-js/jest.config.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,5 +39,10 @@ const config: Config.InitialOptions = {
3939
statements: 0,
4040
},
4141
},
42+
globals: {
43+
'ts-jest': {
44+
tsconfig: 'tsconfig.test.json',
45+
},
46+
},
4247
}
4348
export default config
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"extends": "./tsconfig.json",
3+
"include": ["src", "test"],
4+
"compilerOptions": {
5+
"composite": false,
6+
"outDir": "dist/test",
7+
"rootDir": "."
8+
}
9+
}

0 commit comments

Comments
 (0)