Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion workshops/introduction_to_event_sourcing/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@ Follow the instructions in exercises folders.

1. Install git - https://git-scm.com/downloads.
2. Clone this repository.
3. Install Node.js 20.10 - https://Node.js.org/en/download/ (Or better using NVM).
3. Install Node.js 20.10 - https://Node.js.org/en/download/ (or better using NVM).
- if you're using Node.js higher than v20, you can update `tsconfig.json`'s `compilerOptions.lib|target` in order to use newer JavaScript standard APIs, e.g. `Array.fromAsync`
4. Install VSCode, WebStorm or other prefered IDE.
5. Install docker - https://docs.docker.com/engine/install/.
6. Open the current folder in IDE.
Expand Down
4 changes: 2 additions & 2 deletions workshops/introduction_to_event_sourcing/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@

/* Basic Options */
// "incremental": true, /* Enable incremental compilation */
"target": "ESNext" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
"target": "ES2022" /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */,
"verbatimModuleSyntax": true,
"module": "ESNext" /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */,
"lib": [
"ESNext"
"ES2023"
] /* Specify library files to be included in the compilation. */,
"useDefineForClassFields": true,
//"allowJs": true /* Allow javascript files to be compiled. */,
Expand Down