You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> Notice this automatically creates a `package-lock.json` file.
86
+
> Even though dependencies have been installed, if you run `docker images` again, you'll see the image size hasn't changed because the `node_modules` were written to your local volume, not the image layer.
24
87
25
-
```text
26
-
Any command that needs copying
88
+
3. **Exit the container**
89
+
- Run the following command
90
+
91
+
```shell
92
+
exit
93
+
```
94
+
95
+
> We are now done with the interactive container at this stage and no longer need it.
96
+
97
+
4. **Create `tsconfig.json`**
98
+
Create `tsconfig.json` and add the following content to configure the TypeScript compiler:
99
+
100
+
```json
101
+
{
102
+
"extends": "@tsconfig/recommended/tsconfig.json",
103
+
"compilerOptions": {
104
+
"outDir": "./build/dist"
105
+
}
106
+
}
27
107
```
28
108
29
-
> Any notes.
109
+
> ℹ️ While you could auto-generate this file, our manual configuration using a recommended preset keeps the file minimal and clean.
0 commit comments