typescript-starter
typescript-starter copied to clipboard
Nest framework TypeScript starter :coffee:
remove the `rimraf` dev. dependency in favor of the `deleteOutDir` feature from NestJS CLI. Now we got one less npm-script & dependency to reason about I don't see any advantage...
According to: https://github.com/nestjs/nest/blob/master/package.json#L175-L177 The minimum NodeJS version for NestJS apps is 12.x, and using [Node Target Mapping](https://github.com/microsoft/TypeScript/wiki/Node-Target-Mapping#node-12), we can increase the version target to es2019. Also, I added the `include`...
Bumps [terser](https://github.com/terser/terser) from 5.14.1 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...
`esModuleInterop` Option automatically enables the `allowSyntheticDefaultImports` option that enables this import to working fine when compiling using tsc: ```ts import path from "node:path" ```
fix https://github.com/nestjs/typescript-starter/issues/288 Set [lib](https://www.typescriptlang.org/tsconfig#lib) field to `ES2023`. Ref: [node-lts.json](https://github.com/tsconfig/bases/blob/main/bases/node-lts.json), [node18.json](https://github.com/tsconfig/bases/blob/main/bases/node18.json), [node19.json](https://github.com/tsconfig/bases/blob/main/bases/node19.json), [node20.json](https://github.com/tsconfig/bases/blob/main/bases/node20.json) of https://github.com/tsconfig/bases repo.
fixed: [#12417](https://github.com/nestjs/nest/issues/12417)
Bumps [express](https://github.com/expressjs/express) to 4.19.2 and updates ancestor dependency [@nestjs/platform-express](https://github.com/nestjs/nest/tree/HEAD/packages/platform-express). These dependencies need to be updated together. Updates `express` from 4.18.2 to 4.19.2 Release notes Sourced from express's releases. 4.19.2 What's...
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3. Commits 74b2db2 3.0.3 88f1429 update eslint. lint, fix unit tests. 415d660 Snyk js braces 6838727 (#40) 190510f fix tests, skip 1 test in test/braces.expand...
Hi!🖐️ I would like to propose two changes. 1. **Remove eslint-plugin-prettier**: As per the [official Prettier documentation](https://prettier.io/docs/en/integrating-with-linters.html#notes), the `prettier --check .` command can be used instead, so eslint-plugin-prettier may no...
## Description - Fixes #309 - Remove ESLint Legacy config - Add new flat config with the same rules as previous version - Fix linting issues that were introduced with...