Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@ts-type/package-dts

Package Overview
Dependencies
Maintainers
1
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ts-type/package-dts - npm Package Compare versions

Comparing version 1.0.50 to 1.0.51

11

CHANGELOG.md

@@ -6,2 +6,13 @@ # Change Log

## [1.0.51](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.50...@ts-type/package-dts@1.0.51) (2021-08-31)
### 🛠 Build System
* **schema:** update schema ([1dfcf4b](https://github.com/bluelovers/ws-ts-type/commit/1dfcf4b12e31b263ae7c392dae039a73719f5c65))
## [1.0.50](https://github.com/bluelovers/ws-ts-type/compare/@ts-type/package-dts@1.0.49...@ts-type/package-dts@1.0.50) (2021-07-20)

@@ -8,0 +19,0 @@

6

package.json
{
"name": "@ts-type/package-dts",
"version": "1.0.50",
"version": "1.0.51",
"private": false,

@@ -65,3 +65,3 @@ "description": "A Typescript type definition for NPM package json",

"@types/semver": "^7.3.4",
"ts-type": "^1.2.39"
"ts-type": "^1.2.40"
},

@@ -78,3 +78,3 @@ "devDependencies": {

},
"gitHead": "a9afeb2513c2967c1f6f2c56260b5158aafe164a",
"gitHead": "2576ce949f0ead12c24c16f334764789a57989ac",
"sharedDependencies": {

@@ -81,0 +81,0 @@ "eslint-config-bluelovers": "latest"

@@ -133,3 +133,3 @@ {

"description": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.",
"type": "string",
"type": "boolean",
"markdownDescription": "Synchronously call callbacks and update the state of directory watchers on platforms that don`t support recursive watching natively.\n\nSee more: https://www.typescriptlang.org/tsconfig#synchronousWatchDirectory"

@@ -1012,3 +1012,3 @@ },

"ts-node": {
"description": "ts-node options. See also: https://github.com/TypeStrong/ts-node#configuration-options\n\nts-node offers TypeScript execution and REPL for node.js, with source map support.",
"description": "ts-node options. See also: https://typestrong.org/ts-node/docs/configuration\n\nts-node offers TypeScript execution and REPL for node.js, with source map support.",
"properties": {

@@ -1041,2 +1041,6 @@ "compiler": {

},
"experimentalReplAwait": {
"description": "Allows the usage of top level await in REPL.\n\nUses node's implementation which accomplishes this with an AST syntax transformation.\n\nEnabled by default when tsconfig target is es2018 or above. Set to false to disable.\n\n**Note**: setting to `true` when tsconfig target is too low will throw an Error. Leave as `undefined`\nto get default, automatic behavior.",
"type": "boolean"
},
"files": {

@@ -1072,2 +1076,6 @@ "default": false,

},
"moduleTypes": {
"type": "object",
"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."
},
"preferTsExts": {

@@ -1090,2 +1098,11 @@ "default": false,

},
"scope": {
"default": false,
"description": "Scope compiler to files within `scopeDir`.",
"type": "boolean"
},
"scopeDir": {
"default": "First of: `tsconfig.json` \"rootDir\" if specified, directory containing `tsconfig.json`, or cwd if no `tsconfig.json` is loaded.",
"type": "string"
},
"skipIgnore": {

@@ -1092,0 +1109,0 @@ "default": false,

@@ -636,3 +636,3 @@ /* tslint:disable */

*/
synchronousWatchDirectory?: string;
synchronousWatchDirectory?: boolean;
/**

@@ -682,3 +682,3 @@ * Remove a list of files from the watch mode's processing.

/**
* ts-node options. See also: https://github.com/TypeStrong/ts-node#configuration-options
* ts-node options. See also: https://typestrong.org/ts-node/docs/configuration
*

@@ -1270,2 +1270,13 @@ * ts-node offers TypeScript execution and REPL for node.js, with source map support.

/**
* Allows the usage of top level await in REPL.
*
* Uses node's implementation which accomplishes this with an AST syntax transformation.
*
* Enabled by default when tsconfig target is es2018 or above. Set to false to disable.
*
* **Note**: setting to `true` when tsconfig target is too low will throw an Error. Leave as `undefined`
* to get default, automatic behavior.
*/
experimentalReplAwait?: boolean;
/**
* Load "files" and "include" from `tsconfig.json` on startup.

@@ -1295,2 +1306,19 @@ *

/**
* Override certain paths to be compiled and executed as CommonJS or ECMAScript modules.
* When overridden, the tsconfig "module" and package.json "type" fields are overridden.
* This is useful because TypeScript files cannot use the .cjs nor .mjs file extensions;
* it achieves the same effect.
*
* Each key is a glob pattern following the same rules as tsconfig's "include" array.
* When multiple patterns match the same file, the last pattern takes precedence.
*
* `cjs` overrides matches files to compile and execute as CommonJS.
* `esm` overrides matches files to compile and execute as native ECMAScript modules.
* `package` overrides either of the above to default behavior, which obeys package.json "type" and
* tsconfig.json "module" options.
*/
moduleTypes?: {
[k: string]: unknown;
};
/**
* Re-order file extensions so that TypeScript imports are preferred.

@@ -1315,2 +1343,7 @@ *

/**
* Scope compiler to files within `scopeDir`.
*/
scope?: boolean;
scopeDir?: string;
/**
* Skip ignore check, so that compilation will be attempted for all files with matching extensions.

@@ -1317,0 +1350,0 @@ */

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc