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

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

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

Last synced: 10 months ago
JSON representation

TypeScript: The Complete Developer's Guide - App 1

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.

## 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.