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

tsarch

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tsarch - npm Package Compare versions

Comparing version 4.0.1 to 4.0.2

6

dist/src/core/parser/ProjectParser.js

@@ -58,7 +58,7 @@ "use strict";

program = typescript_1.createProgram(fileNames, {
target: typescript_1.ScriptTarget.ESNext
target: typescript_1.ScriptTarget.ESNext, moduleResolution: typescript_1.ModuleResolutionKind.NodeJs
});
program.getSourceFiles().forEach(function (s) {
if ((config.declarations ? !s.fileName.endsWith(".d.ts") : true) &&
(config.nodeModules ? !s.fileName.includes("node_modules") : true)) {
if ((config.declarations ? !s.isDeclarationFile : true) &&
(config.nodeModules ? !program.isSourceFileFromExternalLibrary(s) : true)) {
var file = FileFactory_1.FileFactory.buildFromSourceFile(s);

@@ -65,0 +65,0 @@ project.addFile(file);

{
"name": "tsarch",
"version": "4.0.1",
"version": "4.0.2",
"description": "",

@@ -5,0 +5,0 @@ "keywords": [],

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