Skip to content

Commit

Permalink
fix: resolve ts errors
Browse files Browse the repository at this point in the history
  • Loading branch information
damon holden 612924336 committed Sep 16, 2023
1 parent 9792647 commit c91613e
Show file tree
Hide file tree
Showing 11 changed files with 4,040 additions and 4,072 deletions.
9 changes: 2 additions & 7 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,17 @@
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
{
"name": "moon-ifo devcontainer",
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-20-bullseye",

"name": "moon-info devcontainer",
// Features to add to the dev container. More info: https://containers.dev/features.
// "features": {},

// Use 'forwardPorts' to make a list of ports inside the container available locally.
// "forwardPorts": [3000]

// Use 'postCreateCommand' to run commands after the container is created.
"postCreateCommand": "bash -i -c 'nvm install 18.17.1 && nvm use 18.17.1' && npm i"

"postCreateCommand": "bash -i -c 'nvm install 18.17.1 && nvm use 18.17.1' && npm install -g npm@10 && npm install"
// Configure tool-specific properties.
// "customizations": {},

// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
// "remoteUser": "root"
}
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,13 @@ npm install

```bash
# development
$ npm run start
npm run start

# watch mode
$ npm run start:dev
npm run start:dev

# production mode
$ npm run start:prod
npm run start:prod
```

### Tailwind CSS
Expand All @@ -47,13 +47,13 @@ npm run start:dev:css

```bash
# unit tests
$ npm run test
npm run test

# e2e tests
$ npm run test:e2e
npm run test:e2e

# test coverage
$ npm run test:cov
npm run test:cov
```

## Favicons
Expand Down
4 changes: 2 additions & 2 deletions nest-cli.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://json.schemastore.org/nest-cli",
"collection": "@nestjs/schematics",
"sourceRoot": "src",
"compilerOptions": {
"deleteOutDir": true
}
},
"sourceRoot": "src"
}
Loading

0 comments on commit c91613e

Please sign in to comment.