@ts-type/package-dts
Advanced tools
Comparing version 1.0.58 to 1.0.59
@@ -6,2 +6,18 @@ # Change Log | ||
## [1.0.59](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.58...@ts-type/package-dts@1.0.59) (2022-02-26) | ||
### 🛠 Build System | ||
* **schema:** update schema ([aebdba1](https://github.com/bluelovers/ws-ts-type/commit/aebdba11d7d030454704f3840141a8d554a2f04d)) | ||
### 🔖 Miscellaneous | ||
* . ([b0bf8f4](https://github.com/bluelovers/ws-ts-type/commit/b0bf8f445b91b384e0db1fe129b21040138195a8)) | ||
## [1.0.58](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.57...@ts-type/package-dts@1.0.58) (2022-01-12) | ||
@@ -8,0 +24,0 @@ |
@@ -7,3 +7,7 @@ "use strict"; | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
@@ -10,0 +14,0 @@ if (k2 === undefined) k2 = k; |
@@ -7,3 +7,7 @@ "use strict"; | ||
if (k2 === undefined) k2 = k; | ||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); | ||
var desc = Object.getOwnPropertyDescriptor(m, k); | ||
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) { | ||
desc = { enumerable: true, get: function() { return m[k]; } }; | ||
} | ||
Object.defineProperty(o, k2, desc); | ||
}) : (function(o, m, k, k2) { | ||
@@ -10,0 +14,0 @@ if (k2 === undefined) k2 = k; |
{ | ||
"name": "@ts-type/package-dts", | ||
"version": "1.0.58", | ||
"version": "1.0.59", | ||
"private": false, | ||
@@ -65,9 +65,9 @@ "description": "A Typescript type definition for NPM package json", | ||
"@types/semver": "^7.3.9", | ||
"ts-type": "^2.1.4" | ||
"ts-type": "^2.1.5" | ||
}, | ||
"devDependencies": { | ||
"axios": "^0.24.0", | ||
"axios": "^0.26.0", | ||
"bluebird": "^3.7.2", | ||
"dot-values2": "^2.0.5", | ||
"fs-extra": "^10.0.0", | ||
"fs-extra": "^10.0.1", | ||
"json-schema-to-typescript": "^10.1.5" | ||
@@ -83,3 +83,3 @@ }, | ||
}, | ||
"gitHead": "76cf697a05ef4cb0518cefbe58def9113ad40a71", | ||
"gitHead": "e8c949105b230b7b3a956d1c0c8f35e21e9c150a", | ||
"sharedDependencies": { | ||
@@ -86,0 +86,0 @@ "eslint-config-bluelovers": "latest" |
@@ -1019,2 +1019,5 @@ { | ||
}, | ||
"tsNodeModuleTypes": { | ||
"type": "object" | ||
}, | ||
"tsNodeDefinition": { | ||
@@ -1055,2 +1058,6 @@ "properties": { | ||
}, | ||
"experimentalResolverFeatures": { | ||
"description": "Enable experimental features that re-map imports and require calls to support:\n`baseUrl`, `paths`, `rootDirs`, `.js` to `.ts` file extension mappings,\n`outDir` to `rootDir` mappings for composite projects and monorepos.\n\nFor details, see https://github.com/TypeStrong/ts-node/issues/1514", | ||
"type": "boolean" | ||
}, | ||
"files": { | ||
@@ -1087,3 +1094,3 @@ "default": false, | ||
"moduleTypes": { | ||
"type": "object", | ||
"$ref": "#/definitions/tsNodeModuleTypes", | ||
"description": "Override certain paths to be compiled and executed as CommonJS or ECMAScript modules.\nWhen overridden, the tsconfig \"module\" and package.json \"type\" fields are overridden.\nThis is useful because TypeScript files cannot use the .cjs nor .mjs file extensions;\nit achieves the same effect.\n\nEach key is a glob pattern following the same rules as tsconfig's \"include\" array.\nWhen multiple patterns match the same file, the last pattern takes precedence.\n\n`cjs` overrides matches files to compile and execute as CommonJS.\n`esm` overrides matches files to compile and execute as native ECMAScript modules.\n`package` overrides either of the above to default behavior, which obeys package.json \"type\" and\ntsconfig.json \"module\" options." | ||
@@ -1122,2 +1129,6 @@ }, | ||
}, | ||
"swc": { | ||
"description": "Transpile with swc instead of the TypeScript compiler, and skip typechecking.\n\nEquivalent to setting both `transpileOnly: true` and `transpiler: 'ts-node/transpilers/swc'`\n\nFor complete instructions: https://typestrong.org/ts-node/docs/transpilers", | ||
"type": "boolean" | ||
}, | ||
"transpileOnly": { | ||
@@ -1131,14 +1142,2 @@ "default": false, | ||
{ | ||
"additionalItems": { | ||
"anyOf": [ | ||
{ | ||
"type": "string" | ||
}, | ||
{ | ||
"additionalProperties": true, | ||
"properties": {}, | ||
"type": "object" | ||
} | ||
] | ||
}, | ||
"items": [ | ||
@@ -1154,2 +1153,3 @@ { | ||
], | ||
"maxItems": 2, | ||
"minItems": 2, | ||
@@ -1156,0 +1156,0 @@ "type": "array" |
@@ -1329,2 +1329,10 @@ /* tslint:disable */ | ||
/** | ||
* Enable experimental features that re-map imports and require calls to support: | ||
* `baseUrl`, `paths`, `rootDirs`, `.js` to `.ts` file extension mappings, | ||
* `outDir` to `rootDir` mappings for composite projects and monorepos. | ||
* | ||
* For details, see https://github.com/TypeStrong/ts-node/issues/1514 | ||
*/ | ||
experimentalResolverFeatures?: boolean; | ||
/** | ||
* Load "files" and "include" from `tsconfig.json` on startup. | ||
@@ -1399,2 +1407,10 @@ * | ||
/** | ||
* Transpile with swc instead of the TypeScript compiler, and skip typechecking. | ||
* | ||
* Equivalent to setting both `transpileOnly: true` and `transpiler: 'ts-node/transpilers/swc'` | ||
* | ||
* For complete instructions: https://typestrong.org/ts-node/docs/transpilers | ||
*/ | ||
swc?: boolean; | ||
/** | ||
* Use TypeScript's faster `transpileModule`. | ||
@@ -1411,9 +1427,3 @@ */ | ||
[k: string]: unknown; | ||
}, | ||
...( | ||
| string | ||
| { | ||
[k: string]: unknown; | ||
} | ||
)[] | ||
} | ||
] | ||
@@ -1420,0 +1430,0 @@ | string; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
418776
9821
Updatedts-type@^2.1.5