File tree Expand file tree Collapse file tree 5 files changed +1081
-1453
lines changed
35-interfaces/20-interface-using/en Expand file tree Collapse file tree 5 files changed +1081
-1453
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ compose-build:
1010 docker compose build
1111
1212compose-install :
13- docker compose run exercises npm install
13+ docker compose run --rm exercises npm install
1414
1515compose-update :
16- docker compose run exercises npx ncu -u
16+ docker compose run --rm exercises npx ncu -u
1717
1818code-lint :
1919 npx eslint .
@@ -25,20 +25,23 @@ code-lint:
2525# @$$(find . -type f -name *.class -delete)
2626
2727compose-bash :
28- docker compose run exercises bash
28+ docker compose run --rm exercises bash
2929
3030compose-test :
31- docker compose run exercises make test
31+ docker compose run --rm exercises make test
3232
3333compose-description-lint :
34- docker compose run exercises make description-lint
34+ docker compose run --rm exercises make description-lint
3535
3636compose-schema-validate :
37- docker compose run exercises make schema-validate
37+ docker compose run --rm exercises make schema-validate
3838
3939ci-check :
4040 docker compose --file docker-compose.yml build
4141 docker compose --file docker-compose.yml up --abort-on-container-exit
4242
4343test-fast :
4444 npx vitest
45+
46+ update-deps :
47+ npx ncu -u
Original file line number Diff line number Diff line change 11---
22name : Modules
33tips :
4- - >
5- [Official documentation
6- about modules](https://www.typescriptlang.org/docs/handbook/modules.html)
7- - >
8- [How module
9- resolution happens](https://www.typescriptlang.org/docs/handbook/module-resolution.html#how-nodejs-resolves-modules)
10- - >
11- [Official documentation
12- about namespaces](https://www.typescriptlang.org/docs/handbook/namespaces.html)
13- - >
14- [Method
15- includes()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes)
4+ - |
5+ [Official documentation about modules](https://www.typescriptlang.org/docs/handbook/modules.html)
6+ - |
7+ [How module resolution happens](https://www.typescriptlang.org/docs/handbook/module-resolution.html#how-nodejs-resolves-modules)
8+ - |
9+ [Official documentation about namespaces](https://www.typescriptlang.org/docs/handbook/namespaces.html)
10+ - |
11+ [Method includes()](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/includes)
Original file line number Diff line number Diff line change 11---
22name : Using interfaces
33tips :
4- - >
4+ - |
55 [Official documentation](https://www.typescriptlang.org/docs/handbook/2/objects.html)
6-
You can’t perform that action at this time.
0 commit comments