Skip to content

Commit c20f909

Browse files
committed
fix: TS errors in CI
1 parent a02ba8f commit c20f909

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

.github/workflows/lint-typescript.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ on:
1919
- "**/*.json"
2020
- "**/*.lockb"
2121
- "**/package.json"
22+
- "**/tsconfig.json"
23+
- "**/eslintrc.js"
2224
pull_request:
2325
paths:
2426
- ".github/workflows/lint-typescript.yml"
@@ -30,6 +32,8 @@ on:
3032
- "**/*.json"
3133
- "**/*.lockb"
3234
- "**/package.json"
35+
- "**/tsconfig.json"
36+
- "**/eslintrc.js"
3337

3438
jobs:
3539
tsc:

example/tsconfig.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
{
22
"extends": "../config/tsconfig.json",
3-
"include": ["src", "index.js", "../package"]
3+
"include": ["src", "index.js", "../package"],
4+
"compilerOptions": {
5+
"baseUrl": ".",
6+
"paths": {
7+
"react-native-nitro-sqlite": ["../package/src"]
8+
}
9+
}
410
}

0 commit comments

Comments
 (0)