An open API service indexing awesome lists of open source software.

https://github.com/backpackerhh/typescript-course-framework

TypeScript: The Complete Developer's Guide - App 4
https://github.com/backpackerhh/typescript-course-framework

Last synced: 8 days ago
JSON representation

TypeScript: The Complete Developer's Guide - App 4

Awesome Lists containing this project

README

          

# Maps

## Up and running

Install dependencies:

```bash
$ npm run install-deps
```

Run server:

```bash
$ npm start
```

Go to http://localhost:1234 to see the project in the browser.

Run API:

```bash
$ npm run start-server
```

Go to http://localhost:3000 to see the API in the browser.

## Notes

In the `tsconfig.json` file following option was defined:

```json
{
"compilerOptions": {
// ...
"moduleResolution": "NodeNext"
},
}
```

More details about module resolution [here](https://www.typescriptlang.org/tsconfig#moduleResolution).

Note that `tsconfig.json` file is not included in this repository because I use a global file for all this mini-projects created for this course.