express-ts-api-starter 1.3.0 → 1.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/eslint.config.js CHANGED
@@ -1,22 +1,21 @@
1
- import js from '@eslint/js'
2
- import globals from 'globals'
3
- import tseslint from 'typescript-eslint'
1
+ import js from "@eslint/js";
2
+ import globals from "globals";
3
+ import tseslint from "typescript-eslint";
4
4
 
5
- export default tseslint.config({
6
- ignores: ['dist/**'],
7
- },
8
- {
9
- extends: [
10
- js.configs.recommended,
11
- ...tseslint.configs.recommended,
12
- ],
13
- files: ['**/*.{ts,js,cjs,mjs}'],
14
- languageOptions: {
15
- ecmaVersion: 2020,
16
- globals: globals.browser,
5
+ export default tseslint.config(
6
+ {
7
+ ignores: ["dist/**"],
17
8
  },
18
- rules: {
19
- '@typescript-eslint/no-unused-vars': 'off',
20
- '@typescript-eslint/no-explicit-any': "off"
9
+ {
10
+ extends: [js.configs.recommended, ...tseslint.configs.recommended],
11
+ files: ["**/*.{ts,js,cjs,mjs}"],
12
+ languageOptions: {
13
+ ecmaVersion: 2020,
14
+ globals: globals.browser,
15
+ },
16
+ rules: {
17
+ "@typescript-eslint/no-unused-vars": "off",
18
+ "@typescript-eslint/no-explicit-any": "off",
19
+ },
21
20
  },
22
- });
21
+ );
package/jest.config.ts CHANGED
@@ -1,9 +1,9 @@
1
- import type { Config } from 'jest';
1
+ import type { Config } from "jest";
2
2
 
3
3
  const config: Config = {
4
- preset: 'ts-jest',
5
- testEnvironment: 'node',
6
- testPathIgnorePatterns: ['/dist/'],
4
+ preset: "ts-jest",
5
+ testEnvironment: "node",
6
+ testPathIgnorePatterns: ["/dist/"],
7
7
  };
8
8
 
9
9
  export default config;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "express-ts-api-starter",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "Production-ready Express.js + TypeScript boilerplate with MVC architecture, JWT auth, MongoDB, security, validation, and testing—build scalable REST APIs fast",
5
5
  "main": "dist/server.js",
6
6
  "types": "dist/server.d.ts",