Skip to content

Commit e1ef1cc

Browse files
authored
fix: ts config (#2657)
Signed-off-by: Jason C. Leach <jason.leach@fullboar.ca>
1 parent 4967cf1 commit e1ef1cc

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

.github/workflows/quality.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515

1616
- uses: actions/setup-python@v4
1717
with:
18-
python-version: '3.11'
18+
python-version: "3.11"
1919

2020
- name: Setup NodeJS
2121
uses: ./.github/workflows/actions/setup-node
@@ -30,7 +30,7 @@ jobs:
3030

3131
- name: Install dependencies
3232
working-directory: app
33-
run: yarn install --immutable-cache
33+
run: yarn install --immutable
3434

3535
- name: Cache bcsc-core build output
3636
uses: actions/cache@v3
@@ -70,7 +70,7 @@ jobs:
7070

7171
- uses: actions/setup-python@v5
7272
with:
73-
python-version: '3.11'
73+
python-version: "3.11"
7474

7575
- name: Setup NodeJS
7676
uses: ./.github/workflows/actions/setup-node
@@ -85,7 +85,7 @@ jobs:
8585

8686
- name: Install dependencies
8787
working-directory: app
88-
run: yarn install --immutable-cache
88+
run: yarn install --immutable
8989

9090
- name: Automated testing
9191
run: yarn test

app/tsconfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
"@screens/*": ["src/screens/*"],
1717
"@services/*": ["src/services/*"],
1818
"@types/*": ["src/types/*"],
19-
"@utils/*": ["src/utils/*"]
19+
"@utils/*": ["src/utils/*"],
20+
"react-native-bcsc-core": ["../packages/bcsc-core/src"]
2021
}
2122
},
2223
"exclude": ["node_modules", "metro.config.js", "babel.config.js", "jest.config.js", "jestSetup.js"]

0 commit comments

Comments
 (0)