New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

ts-runtime

Package Overview
Dependencies
Maintainers
1
Versions
39
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ts-runtime - npm Package Compare versions

Comparing version

to
0.1.14

1

context.d.ts

@@ -26,3 +26,2 @@ import * as ts from 'typescript';

wasDeclared(node: ts.EntityName): boolean;
pathIsOutsideRoot(fileName: string): boolean;
isAny(node: ts.Node): boolean;

@@ -29,0 +28,0 @@ isSelfReference(node: ts.TypeReferenceNode): boolean;

10

context.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const path = require("path");
// import * as path from 'path';
const ts = require("typescript");

@@ -77,6 +77,6 @@ const util = require("./util");

}
pathIsOutsideRoot(fileName) {
const rootDir = this.program.getCompilerOptions().rootDir + path.sep;
return !path.resolve(fileName).startsWith(path.resolve(rootDir));
}
// public pathIsOutsideRoot(fileName: string): boolean {
// const rootDir = this.program.getCompilerOptions().rootDir + path.sep;
// return !path.resolve(fileName).startsWith(path.resolve(rootDir));
// }
isAny(node) {

@@ -83,0 +83,0 @@ if (util.isAnyKeyword(node)) {

@@ -392,4 +392,5 @@ "use strict";

}
// TODO: For now, do not include interfaces in the reflection, as they must be implemented in the prototype chain.
if (intersections.length > 0) {
reflection = [this.propertyAccessCall(this.intersect([...intersections, this.asObject(reflection)]), 'unwrap')];
// reflection = [this.propertyAccessCall(this.intersect([...intersections, this.asObject(reflection)]), 'unwrap')];
// reflection = [this.intersect([...intersections, this.asObject(reflection)]) ];

@@ -396,0 +397,0 @@ }

@@ -19,2 +19,3 @@ "use strict";

if (!this.options.excludeDeclarationFile && this.context.scanner.getDeclarations().length > 0 && this.context.isEntryFile(node.fileName)) {
// TODO: refactor to not use path module
const relativePath = path.relative(path.dirname(node.fileName), this.context.commonDir);

@@ -21,0 +22,0 @@ const filePath = path.join(relativePath, this.context.options.declarationFileName);

{
"name": "ts-runtime",
"version": "0.1.13",
"version": "0.1.14",
"description": "Runtime type checks for TypeScript",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -121,2 +121,3 @@ "use strict";

}
// TODO: refactor to not use path module
pathIsExternal(fileName) {

@@ -123,0 +124,0 @@ const rootDir = this.program.getCompilerOptions().rootDir + path.sep;