ts-runtime
Advanced tools
Comparing version
@@ -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; |
"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; |
230173
0.09%4215
0.05%