Comparing version 1.0.2 to 1.0.3
{ | ||
"name": "dpdm-fast", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"private": false, | ||
@@ -5,0 +5,0 @@ "description": "Analyze circular dependencies in your JavaScript/TypeScript projects with Rust.", |
@@ -183,6 +183,11 @@ <h1 align="center"> | ||
export interface ParseOptions { | ||
context: string; // context to shorten filename, default is process.cwd() | ||
extensions: string[]; // the custom extensions to resolve file, default is [ '.ts', '.tsx', '.mjs', '.js', '.jsx', '.json' ] | ||
include: RegExp; // the files to parse match regex, default is /\.m?[tj]sx?$/ | ||
exclude: RegExp; // the files to ignore parse, default is /\/node_modules\// | ||
context: string; | ||
extensions: string[]; | ||
js: string[]; | ||
include: RegExp; | ||
exclude: RegExp; | ||
tsconfig: string | undefined; | ||
onProgress: (event: 'start' | 'end', target: string) => void; | ||
transform: boolean; | ||
skipDynamicImports: boolean; | ||
} | ||
@@ -189,0 +194,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
224
40970578