Skip to content

Commit bdecdb8

Browse files
committed
fix
1 parent 47694d7 commit bdecdb8

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/content/9/en/part9c.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,17 @@ For this set of exercises, you will be developing a backend for an existing proj
270270

271271
The [frontend](https://github.com/fullstack-hy2020/patientor) has already been built by outsider experts and your task is to create a backend to support the existing code.
272272

273+
#### WARNING
274+
275+
Quite often VS code looses track what is really happening in the code and it shows type or style related warnings despite the code has been fixed. If this happens (to me it has happened quite often), just restart the editor. It is also good to doublecheck that everything really works by running the compiler and the eslint from the command line with commands:
276+
277+
```
278+
npm run tsc
279+
npm run lint
280+
```
281+
282+
When run in command line you get the "real result" for sure. So, never trust the editor too much!
283+
273284
#### 9.8: Patientor backend, step1
274285

275286
Initialize a new backend project that will work with the frontend. Configure eslint and tsconfig with the same configurations as proposed in the material. Define an endpoint that answers HTTP GET requests for route */api/ping*.

0 commit comments

Comments
 (0)