Socket
Socket
Sign inDemoInstall

@wdio/types

Package Overview
Dependencies
Maintainers
3
Versions
172
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@wdio/types - npm Package Compare versions

Comparing version 8.0.0-alpha.577 to 8.0.0-alpha.589

80

build/Options.d.ts

@@ -467,3 +467,83 @@ /// <reference types="node" />

babelOpts?: Record<string, any>;
tsNodeOpts?: TSNodeOptions;
}
export interface TSNodeOptions {
/**
* Path to tsconfig file.
*/
project?: string;
/**
* Skip project config resolution and loading
*/
skipProject?: boolean;
/**
* JSON object to merge with compiler options
*/
compilerOptions?: Record<string, any>;
/**
* Use TypeScript's faster transpileModule
*/
transpileOnly?: boolean;
/**
* Opposite of --transpileOnly
*/
typeCheck?: boolean;
/**
* Use TypeScript's compiler host API
*/
compilerHost?: boolean;
/**
* Load files, include and exclude from tsconfig.json on startup.
* This may avoid certain typechecking failures. See Missing types for details.
*/
files?: boolean;
/**
* Ignore TypeScript warnings by diagnostic code
*/
ignoreDiagnostics?: string[];
/**
* Override the path patterns to skip compilation
*/
ignore?: RegExp;
/**
* Skip ignore checks
*/
skipIgnore?: boolean;
/**
* Specify a custom TypeScript compiler
*/
compiler?: string;
/**
* Re-order file extensions so that TypeScript imports are preferred
*/
preferTsExts?: boolean;
/**
* Logs TypeScript errors to stderr instead of throwing exceptions
*/
logError?: boolean;
/**
* Use pretty diagnostic formatter
*/
pretty?: boolean;
/**
* Behave as if invoked in this working directory
*/
cwd?: string;
/**
* Emit output files into `.ts-node` directory. Requires `--compilerHost`
*/
emit?: boolean;
/**
* Scope compiler to files within `scopeDir`. Anything outside this directory is ignored.
*/
scope?: boolean;
/**
* Directory within which compiler is limited when `scope` is enabled.
*/
scopeDir?: string;
/**
* Disable top-level await in REPL. Equivalent to node's `--no-experimental-repl-await`
*/
noExperimentalReplAwait?: boolean;
}
export interface MultiRemote extends Omit<Testrunner, 'capabilities'> {

@@ -470,0 +550,0 @@ capabilities: MultiRemoteCapabilities;

4

package.json
{
"name": "@wdio/types",
"version": "8.0.0-alpha.577+73cd77ef7",
"version": "8.0.0-alpha.589+cdaf6ecd0",
"description": "Utility package providing type information for a variety of WebdriverIO interfaces",

@@ -35,3 +35,3 @@ "author": "Christian Bromann <mail@bromann.dev>",

},
"gitHead": "73cd77ef7887819c56dc98932a0c34e8af10b64a"
"gitHead": "cdaf6ecd07072087dcea8962ac36b8f886e94c98"
}

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