Replies: 1 comment
-
This should be fixed with the latest commit (see #51). |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
so I tried to compile project in Visual Studio Code (Typescript is completly new to me) and got theese step together:
1. Download Node.js
from https://nodejs.org/en/ and install it.
2. Run Visual studio code
2.1 Install Typescript compiler in VS Code by running following command in Terminal:
npm install -g typescript
You can test your install by checking the version or help:
tsc --version
tsc --help
2.2 Open project directory from VS Code menu:
File -> Open Folder -> select folder with Topola project
2.3 Installing all dependencies
Project has a package.json file. Dependencies will be install by running in Terminal:
npm install
It will install everything the project needs, in the node_modules folder, creating it if it's not existing already.
2.4 Run from Terminal (have no idea what does it do):
npm i --save-dev @types/jest
2.5 Compiling from menu VS Code menu:
Terminal -> Run Build Task (Ctrl+Shift+B)
tsc: build - tsconfig.json
But I end with 2 errors:
Beta Was this translation helpful? Give feedback.
All reactions