jh-be-tools 1.0.41 → 1.0.42

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.
@@ -0,0 +1,6 @@
1
+ export let semi: boolean;
2
+ export let trailingComma: string;
3
+ export let singleQuote: boolean;
4
+ export let endOfLine: string;
5
+ export let useTabs: boolean;
6
+ export let printWidth: number;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ module.exports = {
3
+ semi: false,
4
+ trailingComma: 'all',
5
+ singleQuote: true,
6
+ endOfLine: 'auto',
7
+ useTabs: true,
8
+ printWidth: 150,
9
+ };
@@ -1 +1 @@
1
- {"root":["../src/index.ts","../src/api-request/apirequest.ts","../src/config/eslint.config.mjs","../src/create-package-index-files/createpackageindexfiles.ts","../src/route-handler/routecreation.ts","../src/route-handler/routehandler.ts","../src/config/prettier.config.json"],"version":"5.8.2"}
1
+ {"root":["../src/index.ts","../src/api-request/apirequest.ts","../src/config/eslint.config.mjs","../src/config/prettier.config.js","../src/create-package-index-files/createpackageindexfiles.ts","../src/route-handler/routecreation.ts","../src/route-handler/routehandler.ts"],"version":"5.8.2"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jh-be-tools",
3
- "version": "1.0.41",
3
+ "version": "1.0.42",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -39,7 +39,7 @@
39
39
  },
40
40
  "exports": {
41
41
  "./eslint.config.mjs": "./dist/config/eslint.config.mjs",
42
- "./prettier": "./dist/config/prettier.config.json",
42
+ "./prettier": "./dist/config/prettier.config.js",
43
43
  ".": "./dist/index.js"
44
44
  }
45
45
  }
@@ -1,8 +0,0 @@
1
- {
2
- "semi": false,
3
- "trailingComma": "all",
4
- "singleQuote": true,
5
- "endOfLine": "auto",
6
- "useTabs": true,
7
- "printWidth": 150
8
- }