Skip to content

Commit 698609c

Browse files
committed
Create tsconfig for tests
1 parent d24051a commit 698609c

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

packages/react-native-node-api-modules/tsconfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"files": [],
33
"references": [
44
{ "path": "./tsconfig.node.json" },
5+
{ "path": "./tsconfig.node-tests.json" },
56
{ "path": "./tsconfig.react-native.json" }
67
]
78
}
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"extends": "./tsconfig.node.json",
3+
"compilerOptions": {
4+
"composite": true,
5+
"emitDeclarationOnly": true
6+
},
7+
"include": ["src/node/**/*.test.ts"],
8+
"exclude": [],
9+
"references": [
10+
{
11+
"path": "./tsconfig.node.json"
12+
}
13+
]
14+
}

0 commit comments

Comments
 (0)