prototype-helper 1.0.1 → 1.1.0
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/.vscode/settings.json +7 -7
- package/LICENSE +21 -21
- package/README.md +958 -701
- package/biome.json +43 -43
- package/dist/extension/index.d.ts +1 -0
- package/dist/extension/object.d.ts +0 -6
- package/dist/extension/object.test.d.ts +4 -0
- package/dist/extension/promise.d.ts +1 -0
- package/dist/extension/promise.test.d.ts +1 -0
- package/dist/index.d.ts +2 -6
- package/dist/index.js +2 -2
- package/dist/interface/array.d.ts +10 -6
- package/dist/interface/index.d.ts +2 -0
- package/dist/interface/number.d.ts +2 -0
- package/dist/interface/object.d.ts +15 -0
- package/dist/interface/promise.d.ts +9 -0
- package/dist/interface/string.d.ts +7 -0
- package/lint-result.txt +496 -496
- package/package.json +2 -2
- package/tsconfig.json +33 -33
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "prototype-helper",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.1.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"main": "./dist/index.js",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
@@ -41,4 +41,4 @@
|
|
|
41
41
|
"format": "biome format --write .",
|
|
42
42
|
"publish": "npm publish"
|
|
43
43
|
}
|
|
44
|
-
}
|
|
44
|
+
}
|
package/tsconfig.json
CHANGED
|
@@ -1,33 +1,33 @@
|
|
|
1
|
-
{
|
|
2
|
-
"compilerOptions": {
|
|
3
|
-
"baseUrl": ".",
|
|
4
|
-
"outDir": "./dist",
|
|
5
|
-
"target": "ES2016",
|
|
6
|
-
"module": "commonjs",
|
|
7
|
-
"moduleResolution": "Node",
|
|
8
|
-
"sourceMap": true,
|
|
9
|
-
"lib": ["es2016"],
|
|
10
|
-
"paths": {
|
|
11
|
-
"@/*": ["/src/*"],
|
|
12
|
-
"~/*": ["/src/*"]
|
|
13
|
-
},
|
|
14
|
-
"noImplicitAny": false,
|
|
15
|
-
"esModuleInterop": true,
|
|
16
|
-
"experimentalDecorators": true,
|
|
17
|
-
"emitDecoratorMetadata": true,
|
|
18
|
-
"strict": true,
|
|
19
|
-
"allowSyntheticDefaultImports": true,
|
|
20
|
-
"resolveJsonModule": true,
|
|
21
|
-
"declaration": true,
|
|
22
|
-
"skipLibCheck": true,
|
|
23
|
-
"types": ["bun-types", "bun-types/test-globals"]
|
|
24
|
-
},
|
|
25
|
-
"include": ["./src/**/*.ts"],
|
|
26
|
-
"exclude": ["node_modules", "**/*.spec.ts"],
|
|
27
|
-
"typeRoots": ["./node_modules/@types"],
|
|
28
|
-
"repository": {
|
|
29
|
-
"type": "git",
|
|
30
|
-
"url": "git+https://github.com/k22pr/ts-proto"
|
|
31
|
-
},
|
|
32
|
-
"license": "MIT"
|
|
33
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"baseUrl": ".",
|
|
4
|
+
"outDir": "./dist",
|
|
5
|
+
"target": "ES2016",
|
|
6
|
+
"module": "commonjs",
|
|
7
|
+
"moduleResolution": "Node",
|
|
8
|
+
"sourceMap": true,
|
|
9
|
+
"lib": ["es2016"],
|
|
10
|
+
"paths": {
|
|
11
|
+
"@/*": ["/src/*"],
|
|
12
|
+
"~/*": ["/src/*"]
|
|
13
|
+
},
|
|
14
|
+
"noImplicitAny": false,
|
|
15
|
+
"esModuleInterop": true,
|
|
16
|
+
"experimentalDecorators": true,
|
|
17
|
+
"emitDecoratorMetadata": true,
|
|
18
|
+
"strict": true,
|
|
19
|
+
"allowSyntheticDefaultImports": true,
|
|
20
|
+
"resolveJsonModule": true,
|
|
21
|
+
"declaration": true,
|
|
22
|
+
"skipLibCheck": true,
|
|
23
|
+
"types": ["bun-types", "bun-types/test-globals"]
|
|
24
|
+
},
|
|
25
|
+
"include": ["./src/**/*.ts"],
|
|
26
|
+
"exclude": ["node_modules", "**/*.spec.ts"],
|
|
27
|
+
"typeRoots": ["./node_modules/@types"],
|
|
28
|
+
"repository": {
|
|
29
|
+
"type": "git",
|
|
30
|
+
"url": "git+https://github.com/k22pr/ts-proto"
|
|
31
|
+
},
|
|
32
|
+
"license": "MIT"
|
|
33
|
+
}
|