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
- Host: GitHub
- URL: https://github.com/backpackerhh/typescript-course-maps
- Owner: backpackerhh
- Created: 2024-01-18T20:03:24.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-01-20T18:02:05.000Z (over 2 years ago)
- Last Synced: 2025-02-26T07:17:30.043Z (over 1 year ago)
- Language: TypeScript
- Size: 32.2 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.