Comparing version 0.14.0 to 0.14.1
# Changelog for dets | ||
## 0.14.1 | ||
- Fixed issue with TypeScript 5.3 not considering externals | ||
- Added full support for triple-slash directives (#14) | ||
## 0.14.0 | ||
@@ -4,0 +9,0 @@ |
@@ -8,2 +8,4 @@ import * as Typescript from 'typescript'; | ||
export function fillExportsFromReferences(context: DeclVisitorContext, typingsPath: string): void; | ||
export function fillExportsFromTypes(context: DeclVisitorContext, typingsPath: string): void; | ||
@@ -181,2 +183,3 @@ | ||
root: string; | ||
forEachResolvedModule(cb: ResolvedModuleCallback, file: Typescript.SourceFile): void; | ||
} | ||
@@ -192,2 +195,4 @@ | ||
export type ResolvedModuleCallback = (value: ResolvedModuleArg, key: string) => void; | ||
export type TypeModelExport = TypeModelDefault | TypeModelVariable | TypeModelInterface | TypeModelClass | TypeModelFunction | TypeModelEnumLiteral | TypeModelAlias; | ||
@@ -197,2 +202,18 @@ | ||
export interface ResolvedModuleArg { | ||
resolvedFileName?: string; | ||
resolvedModule: { | ||
resolvedFileName: string | undefined; | ||
originalPath: string | undefined; | ||
extension: string; | ||
isExternalLibraryImport: boolean; | ||
packageId: string | undefined; | ||
resolvedUsingTsExtension: boolean; | ||
}; | ||
failedLookupLocations: string | undefined; | ||
affectingLocations: string | undefined; | ||
resolutionDiagnostics: string | undefined; | ||
node10Result: string | undefined; | ||
} | ||
export interface TypeModelDefault extends WithTypeComments { | ||
@@ -199,0 +220,0 @@ readonly kind: "default"; |
{ | ||
"name": "dets", | ||
"version": "0.14.0", | ||
"version": "0.14.1", | ||
"description": "A TypeScript declaration file bundler.", | ||
@@ -70,3 +70,3 @@ "main": "dist/index.js", | ||
"ts-node": "^9.1.1", | ||
"typescript": "5.0.4", | ||
"typescript": "5.3.3", | ||
"vue": "^2.7.14", | ||
@@ -73,0 +73,0 @@ "yargs": "^15.4.1" |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
410930
11145