@checkdigit/typescript-config 5.0.0 → 5.1.0-PR.45-be45
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/bin/builder.mjs +7 -1
- package/package.json +1 -200
package/bin/builder.mjs
CHANGED
@@ -10,6 +10,12 @@ import { promises as fs } from "node:fs";
|
|
10
10
|
import path from "node:path";
|
11
11
|
import typescript from "typescript";
|
12
12
|
import { build } from "esbuild";
|
13
|
+
var commonJsCompatabilityBanner = `import { createRequire as __createRequire } from "node:module";
|
14
|
+
import { fileURLToPath as __fileURLToPath } from "node:url";
|
15
|
+
import { default as __path } from "node:path";
|
16
|
+
const __filename = __fileURLToPath(import.meta.url);
|
17
|
+
const __dirname = __path.dirname(__filename);
|
18
|
+
const require = __createRequire(import.meta.url);`;
|
13
19
|
async function getFiles(directory) {
|
14
20
|
const entries = await fs.readdir(directory, { withFileTypes: true });
|
15
21
|
const files = await Promise.all(
|
@@ -135,7 +141,7 @@ async function builder_default({
|
|
135
141
|
format: type2 === "module" ? "esm" : "cjs",
|
136
142
|
sourcesContent: false,
|
137
143
|
banner: type2 === "module" && outFile2 !== void 0 ? {
|
138
|
-
js:
|
144
|
+
js: commonJsCompatabilityBanner
|
139
145
|
} : {},
|
140
146
|
sourcemap: sourceMap2 ? "inline" : false,
|
141
147
|
...outFile2 === void 0 ? {
|
package/package.json
CHANGED
@@ -1,200 +1 @@
|
|
1
|
-
{
|
2
|
-
"name": "@checkdigit/typescript-config",
|
3
|
-
"version": "5.0.0",
|
4
|
-
"description": "Check Digit standard Typescript configuration",
|
5
|
-
"prettier": "@checkdigit/prettier-config",
|
6
|
-
"engines": {
|
7
|
-
"node": ">=18"
|
8
|
-
},
|
9
|
-
"bin": {
|
10
|
-
"builder": "./bin/builder.mjs"
|
11
|
-
},
|
12
|
-
"peerDependencies": {
|
13
|
-
"@types/node": ">=18",
|
14
|
-
"esbuild": "0.19.3",
|
15
|
-
"typescript": ">=5.2.2 <5.3"
|
16
|
-
},
|
17
|
-
"repository": {
|
18
|
-
"type": "git",
|
19
|
-
"url": "git+https://github.com/checkdigit/typescript-config.git"
|
20
|
-
},
|
21
|
-
"author": "Check Digit, LLC",
|
22
|
-
"license": "MIT",
|
23
|
-
"bugs": {
|
24
|
-
"url": "https://github.com/checkdigit/typescript-config/issues"
|
25
|
-
},
|
26
|
-
"homepage": "https://github.com/checkdigit/typescript-config#readme",
|
27
|
-
"scripts": {
|
28
|
-
"prepublishOnly": "npm run build-builder",
|
29
|
-
"lint:fix": "eslint --ignore-path .gitignore . --fix",
|
30
|
-
"lint": "eslint --max-warnings 0 --ignore-path .gitignore .",
|
31
|
-
"prettier": "prettier --ignore-path .gitignore --list-different .",
|
32
|
-
"prettier:fix": "prettier --ignore-path .gitignore --write .",
|
33
|
-
"test": "npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style",
|
34
|
-
"build-builder": "esbuild src/builder/index.mts --bundle --platform=node --format=esm --external:typescript --external:esbuild --outfile=build-builder/builder.mjs && mkdir -p bin && { echo '#!/usr/bin/env node'; cat build-builder/builder.mjs; } > bin/builder.mjs && chmod +x bin/builder.mjs",
|
35
|
-
"build-types": "rimraf build-types && bin/builder.mjs --type=types --outDir=build-types",
|
36
|
-
"build-cjs": "rimraf build-cjs && bin/builder.mjs --type=commonjs --outDir=build-cjs",
|
37
|
-
"build-cjs-bundle": "rimraf build-cjs-bundle && bin/builder.mjs --type=commonjs --entryPoint=test/index.test.ts --outDir=build-cjs-bundle --outFile=test/index.test.cjs --sourceMap",
|
38
|
-
"build-cjs-bundle-minify": "rimraf build-cjs-bundle-minify && bin/builder.mjs --type=commonjs --entryPoint=test/index.test.ts --outDir=build-cjs-bundle-minify --outFile=test/index.test.cjs --minify --sourceMap",
|
39
|
-
"build-cjs-bundle-no-external": "rimraf build-cjs-bundle-no-external && bin/builder.mjs --type=commonjs --external=./node_modules/* --entryPoint=test/index.test.ts --outDir=build-cjs-bundle-no-external --outFile=test/index.test.cjs",
|
40
|
-
"build-esm": "rimraf build-esm && bin/builder.mjs --type=module --outDir=build-esm",
|
41
|
-
"build-esm-bundle": "rimraf build-esm-bundle && bin/builder.mjs --type=module --outDir=build-esm-bundle --entryPoint=test/index.test.ts --outFile=test/index.test.mjs",
|
42
|
-
"build-esm-bundle-minify": "rimraf build-esm-bundle-minify && bin/builder.mjs --type=module --minify --outDir=build-esm-bundle-minify --entryPoint=test/index.test.ts --outFile=test/index.test.mjs",
|
43
|
-
"build-esm-bundle-no-external": "rimraf build-esm-bundle-no-external && bin/builder.mjs --type=module --external=./node_modules/* --outDir=build-esm-bundle-no-external --entryPoint=test/index.test.ts --outFile=test/index.test.mjs --minify",
|
44
|
-
"test-jest-esm": "NODE_OPTIONS=\"--experimental-vm-modules\" jest --coverage=false src/*.mts src/*/*.mts src/*/*/*.mts",
|
45
|
-
"test-jest-cjs": "jest --coverage=false src/*.ts src/*/*.ts src/*/*/*.ts",
|
46
|
-
"test-cjs": "node --test build-cjs/test/index.test.cjs",
|
47
|
-
"test-cjs-bundle": "node --test build-cjs-bundle/test/index.test.cjs",
|
48
|
-
"test-cjs-bundle-minify": "node --test build-cjs-bundle-minify/test/index.test.cjs",
|
49
|
-
"test-cjs-bundle-no-external": "node --test build-cjs-bundle-no-external/test/index.test.cjs",
|
50
|
-
"test-esm": "node --test build-esm/test/index.test.mjs",
|
51
|
-
"test-esm-bundle": "node --test build-esm-bundle/test/index.test.mjs",
|
52
|
-
"test-esm-bundle-minify": "node --test build-esm-bundle-minify/test/index.test.mjs",
|
53
|
-
"test-esm-bundle-no-external": "node --test build-esm-bundle-no-external/test/index.test.mjs",
|
54
|
-
"ci:test": "npm run test-jest-cjs && npm run test-jest-esm && npm run test-cjs && npm run test-cjs-bundle && npm run test-cjs-bundle-no-external && npm run test-esm && npm run test-esm-bundle && npm run test-esm-bundle-no-external",
|
55
|
-
"ci:compile": "tsc --noEmit && npm run build-builder && npm run build-types && npm run build-cjs && npm run build-cjs-bundle && npm run build-cjs-bundle-minify && npm run build-cjs-bundle-no-external && npm run build-esm && npm run build-esm-bundle && npm run build-esm-bundle-minify && npm run build-esm-bundle-no-external",
|
56
|
-
"ci:lint": "npm run lint",
|
57
|
-
"ci:style": "npm run prettier"
|
58
|
-
},
|
59
|
-
"devDependencies": {
|
60
|
-
"@checkdigit/prettier-config": "^4.1.0",
|
61
|
-
"@types/debug": "^4.1.9",
|
62
|
-
"@types/jest": "^29.5.5",
|
63
|
-
"@types/uuid": "^9.0.4",
|
64
|
-
"@typescript-eslint/eslint-plugin": "^6.7.3",
|
65
|
-
"@typescript-eslint/parser": "^6.7.3",
|
66
|
-
"debug": "^4.3.4",
|
67
|
-
"eslint": "^8.50.0",
|
68
|
-
"eslint-config-prettier": "^9.0.0",
|
69
|
-
"get-port": "^7.0.0",
|
70
|
-
"got": "^11.8.6",
|
71
|
-
"jest": "^29.7.0",
|
72
|
-
"rimraf": "^5.0.2",
|
73
|
-
"ts-jest": "^29.1.1",
|
74
|
-
"uuid": "^9.0.1"
|
75
|
-
},
|
76
|
-
"eslintConfig": {
|
77
|
-
"parser": "@typescript-eslint/parser",
|
78
|
-
"plugins": [
|
79
|
-
"@typescript-eslint"
|
80
|
-
],
|
81
|
-
"parserOptions": {
|
82
|
-
"project": "./tsconfig.json"
|
83
|
-
},
|
84
|
-
"extends": [
|
85
|
-
"eslint:all",
|
86
|
-
"plugin:@typescript-eslint/recommended",
|
87
|
-
"plugin:@typescript-eslint/recommended-requiring-type-checking",
|
88
|
-
"plugin:@typescript-eslint/strict",
|
89
|
-
"prettier"
|
90
|
-
],
|
91
|
-
"rules": {
|
92
|
-
"@typescript-eslint/non-nullable-type-assertion-style": "error",
|
93
|
-
"capitalized-comments": "off",
|
94
|
-
"one-var": "off",
|
95
|
-
"sort-keys": "off",
|
96
|
-
"sort-imports": "off",
|
97
|
-
"func-style": [
|
98
|
-
"error",
|
99
|
-
"declaration",
|
100
|
-
{
|
101
|
-
"allowArrowFunctions": true
|
102
|
-
}
|
103
|
-
],
|
104
|
-
"no-magic-numbers": [
|
105
|
-
"error",
|
106
|
-
{
|
107
|
-
"ignore": [
|
108
|
-
0,
|
109
|
-
1,
|
110
|
-
2
|
111
|
-
]
|
112
|
-
}
|
113
|
-
],
|
114
|
-
"no-undefined": "off",
|
115
|
-
"no-ternary": "off"
|
116
|
-
},
|
117
|
-
"overrides": [
|
118
|
-
{
|
119
|
-
"files": [
|
120
|
-
"*.spec.mts",
|
121
|
-
"*.test.mts",
|
122
|
-
"*.spec.ts",
|
123
|
-
"*.test.ts"
|
124
|
-
],
|
125
|
-
"rules": {
|
126
|
-
"@typescript-eslint/non-nullable-type-assertion-style": "off",
|
127
|
-
"@typescript-eslint/ban-types": "off",
|
128
|
-
"@typescript-eslint/require-await": "off",
|
129
|
-
"@typescript-eslint/consistent-type-definitions": "off",
|
130
|
-
"@typescript-eslint/ban-ts-comment": "off",
|
131
|
-
"@typescript-eslint/no-unnecessary-condition": "off",
|
132
|
-
"@typescript-eslint/consistent-indexed-object-style": "off",
|
133
|
-
"@typescript-eslint/no-unused-vars": "off",
|
134
|
-
"@typescript-eslint/no-unsafe-member-access": "off",
|
135
|
-
"line-comment-position": "off",
|
136
|
-
"no-inline-comments": "off",
|
137
|
-
"no-param-reassign": "off",
|
138
|
-
"id-length": "off",
|
139
|
-
"no-magic-numbers": "off",
|
140
|
-
"func-names": "off",
|
141
|
-
"no-duplicate-imports": "off",
|
142
|
-
"symbol-description": "off",
|
143
|
-
"no-invalid-this": "off",
|
144
|
-
"max-lines-per-function": "off",
|
145
|
-
"max-lines": "off",
|
146
|
-
"max-statements": "off",
|
147
|
-
"no-await-in-loop": "off"
|
148
|
-
}
|
149
|
-
}
|
150
|
-
]
|
151
|
-
},
|
152
|
-
"jest": {
|
153
|
-
"moduleFileExtensions": [
|
154
|
-
"js",
|
155
|
-
"mjs",
|
156
|
-
"cjs",
|
157
|
-
"ts",
|
158
|
-
"mts",
|
159
|
-
"json",
|
160
|
-
"node"
|
161
|
-
],
|
162
|
-
"extensionsToTreatAsEsm": [
|
163
|
-
".mts"
|
164
|
-
],
|
165
|
-
"transform": {
|
166
|
-
"^.+\\.mts$": [
|
167
|
-
"ts-jest",
|
168
|
-
{
|
169
|
-
"isolatedModules": true,
|
170
|
-
"diagnostics": false,
|
171
|
-
"useESM": true
|
172
|
-
}
|
173
|
-
],
|
174
|
-
"^.+\\.ts$": [
|
175
|
-
"ts-jest",
|
176
|
-
{
|
177
|
-
"isolatedModules": true,
|
178
|
-
"diagnostics": false,
|
179
|
-
"useESM": false
|
180
|
-
}
|
181
|
-
]
|
182
|
-
},
|
183
|
-
"collectCoverageFrom": [
|
184
|
-
"<rootDir>/src/**",
|
185
|
-
"!<rootDir>/src/**/*.spec.mts",
|
186
|
-
"!<rootDir>/src/**/*.test.mts",
|
187
|
-
"!<rootDir>/src/**/*.spec.ts",
|
188
|
-
"!<rootDir>/src/**/*.test.ts"
|
189
|
-
],
|
190
|
-
"testMatch": [
|
191
|
-
"<rootDir>/src/**/*.spec.ts",
|
192
|
-
"<rootDir>/src/**/*.spec.mts"
|
193
|
-
]
|
194
|
-
},
|
195
|
-
"files": [
|
196
|
-
"bin",
|
197
|
-
"tsconfig.json",
|
198
|
-
"SECURITY.md"
|
199
|
-
]
|
200
|
-
}
|
1
|
+
{"name":"@checkdigit/typescript-config","version":"5.1.0-PR.45-be45","description":"Check Digit standard Typescript configuration","prettier":"@checkdigit/prettier-config","engines":{"node":">=18"},"bin":{"builder":"./bin/builder.mjs"},"peerDependencies":{"@types/node":">=18","esbuild":"0.19.4","typescript":">=5.2.2 <5.3"},"repository":{"type":"git","url":"git+https://github.com/checkdigit/typescript-config.git"},"author":"Check Digit, LLC","license":"MIT","bugs":{"url":"https://github.com/checkdigit/typescript-config/issues"},"homepage":"https://github.com/checkdigit/typescript-config#readme","scripts":{"prepublishOnly":"npm run build-builder","lint:fix":"eslint --ignore-path .gitignore . --fix","lint":"eslint --max-warnings 0 --ignore-path .gitignore .","prettier":"prettier --ignore-path .gitignore --list-different .","prettier:fix":"prettier --ignore-path .gitignore --write .","test":"npm run ci:compile && npm run ci:test && npm run ci:lint && npm run ci:style","build-builder":"esbuild src/builder/index.mts --bundle --platform=node --format=esm --external:typescript --external:esbuild --outfile=build-builder/builder.mjs && mkdir -p bin && { echo '#!/usr/bin/env node'; cat build-builder/builder.mjs; } > bin/builder.mjs && chmod +x bin/builder.mjs","build-types":"rimraf build-types && bin/builder.mjs --type=types --outDir=build-types","build-cjs":"rimraf build-cjs && bin/builder.mjs --type=commonjs --outDir=build-cjs","build-cjs-bundle":"rimraf build-cjs-bundle && bin/builder.mjs --type=commonjs --entryPoint=test/index.test.ts --outDir=build-cjs-bundle --outFile=test/index.test.cjs --sourceMap","build-cjs-bundle-minify":"rimraf build-cjs-bundle-minify && bin/builder.mjs --type=commonjs --entryPoint=test/index.test.ts --outDir=build-cjs-bundle-minify --outFile=test/index.test.cjs --minify --sourceMap","build-cjs-bundle-no-external":"rimraf build-cjs-bundle-no-external && bin/builder.mjs --type=commonjs --external=./node_modules/* --entryPoint=test/index.test.ts --outDir=build-cjs-bundle-no-external --outFile=test/index.test.cjs","build-esm":"rimraf build-esm && bin/builder.mjs --type=module --outDir=build-esm","build-esm-bundle":"rimraf build-esm-bundle && bin/builder.mjs --type=module --outDir=build-esm-bundle --entryPoint=test/index.test.ts --outFile=test/index.test.mjs","build-esm-bundle-minify":"rimraf build-esm-bundle-minify && bin/builder.mjs --type=module --minify --outDir=build-esm-bundle-minify --entryPoint=test/index.test.ts --outFile=test/index.test.mjs","build-esm-bundle-no-external":"rimraf build-esm-bundle-no-external && bin/builder.mjs --type=module --external=./node_modules/* --outDir=build-esm-bundle-no-external --entryPoint=test/index.test.ts --outFile=test/index.test.mjs --minify","test-jest-esm":"NODE_OPTIONS=\"--experimental-vm-modules\" jest --coverage=false src/*.mts src/*/*.mts src/*/*/*.mts","test-jest-cjs":"jest --coverage=false src/*.ts src/*/*.ts src/*/*/*.ts","test-cjs":"node --test build-cjs/test/index.test.cjs","test-cjs-bundle":"node --test build-cjs-bundle/test/index.test.cjs","test-cjs-bundle-minify":"node --test build-cjs-bundle-minify/test/index.test.cjs","test-cjs-bundle-no-external":"node --test build-cjs-bundle-no-external/test/index.test.cjs","test-esm":"node --test build-esm/test/index.test.mjs","test-esm-bundle":"node --test build-esm-bundle/test/index.test.mjs","test-esm-bundle-minify":"node --test build-esm-bundle-minify/test/index.test.mjs","test-esm-bundle-no-external":"node --test build-esm-bundle-no-external/test/index.test.mjs","ci:test":"npm run test-jest-cjs && npm run test-jest-esm && npm run test-cjs && npm run test-cjs-bundle && npm run test-cjs-bundle-no-external && npm run test-esm && npm run test-esm-bundle && npm run test-esm-bundle-no-external","ci:compile":"tsc --noEmit && npm run build-builder && npm run build-types && npm run build-cjs && npm run build-cjs-bundle && npm run build-cjs-bundle-minify && npm run build-cjs-bundle-no-external && npm run build-esm && npm run build-esm-bundle && npm run build-esm-bundle-minify && npm run build-esm-bundle-no-external","ci:lint":"npm run lint","ci:style":"npm run prettier"},"devDependencies":{"@apidevtools/json-schema-ref-parser":"^11.1.0","@checkdigit/prettier-config":"^4.1.0","@types/debug":"^4.1.9","@types/jest":"^29.5.5","@types/uuid":"^9.0.4","@typescript-eslint/eslint-plugin":"^6.7.4","@typescript-eslint/parser":"^6.7.4","debug":"^4.3.4","eslint":"^8.50.0","eslint-config-prettier":"^9.0.0","get-port":"^7.0.0","got":"^11.8.6","jest":"^29.7.0","node-fetch":"^3.3.2","rimraf":"^5.0.5","ts-jest":"^29.1.1","uuid":"^9.0.1"},"eslintConfig":{"parser":"@typescript-eslint/parser","plugins":["@typescript-eslint"],"parserOptions":{"project":"./tsconfig.json"},"extends":["eslint:all","plugin:@typescript-eslint/recommended","plugin:@typescript-eslint/recommended-requiring-type-checking","plugin:@typescript-eslint/strict","prettier"],"rules":{"@typescript-eslint/non-nullable-type-assertion-style":"error","capitalized-comments":"off","one-var":"off","sort-keys":"off","sort-imports":"off","func-style":["error","declaration",{"allowArrowFunctions":true}],"no-magic-numbers":["error",{"ignore":[0,1,2]}],"no-undefined":"off","no-ternary":"off"},"overrides":[{"files":["*.spec.mts","*.test.mts","*.spec.ts","*.test.ts"],"rules":{"@typescript-eslint/non-nullable-type-assertion-style":"off","@typescript-eslint/ban-types":"off","@typescript-eslint/require-await":"off","@typescript-eslint/consistent-type-definitions":"off","@typescript-eslint/ban-ts-comment":"off","@typescript-eslint/no-unnecessary-condition":"off","@typescript-eslint/consistent-indexed-object-style":"off","@typescript-eslint/no-unused-vars":"off","@typescript-eslint/no-unsafe-member-access":"off","line-comment-position":"off","no-inline-comments":"off","no-param-reassign":"off","id-length":"off","no-magic-numbers":"off","func-names":"off","no-duplicate-imports":"off","symbol-description":"off","no-invalid-this":"off","max-lines-per-function":"off","max-lines":"off","max-statements":"off","no-await-in-loop":"off"}}]},"jest":{"moduleFileExtensions":["js","mjs","cjs","ts","mts","json","node"],"extensionsToTreatAsEsm":[".mts"],"transform":{"^.+\\.mts$":["ts-jest",{"isolatedModules":true,"diagnostics":false,"useESM":true}],"^.+\\.ts$":["ts-jest",{"isolatedModules":true,"diagnostics":false,"useESM":false}]},"collectCoverageFrom":["<rootDir>/src/**","!<rootDir>/src/**/*.spec.mts","!<rootDir>/src/**/*.test.mts","!<rootDir>/src/**/*.spec.ts","!<rootDir>/src/**/*.test.ts"],"testMatch":["<rootDir>/src/**/*.spec.ts","<rootDir>/src/**/*.spec.mts"]},"files":["bin","tsconfig.json","SECURITY.md"]}
|