File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ export type PackageConfig = {
99export type DeserializedPackageConfig = {
1010 data : PackageConfig ,
1111 exists : boolean ,
12- path : URL [ 'pathname' ] ,
12+ path : string ,
1313}
1414export type SerializedPackageConfig = [
1515 PackageConfig [ 'name' ] ,
@@ -22,9 +22,10 @@ export type SerializedPackageConfig = [
2222
2323export interface ModulesBinding {
2424 readPackageJSON ( path : string ) : SerializedPackageConfig | undefined ;
25- getNearestParentPackageJSON ( path : string ) : SerializedPackageConfig | undefined
26- getNearestRawParentPackageJSON ( origin : URL [ 'pathname' ] ) : [ ReturnType < JSON [ 'stringify' ] > , DeserializedPackageConfig [ 'path' ] ] | undefined
2725 getNearestParentPackageJSONType ( path : string ) : PackageConfig [ 'type' ]
26+ getNearestParentPackageJSON ( path : string ) : SerializedPackageConfig | undefined
2827 getPackageScopeConfig ( path : string ) : SerializedPackageConfig | undefined
29- getPackageJSONScripts ( ) : string | undefined
28+ enableCompileCache ( path ?: string ) : { status : number , message ?: string , directory ?: string }
29+ getCompileCacheDir ( ) : string | undefined
30+ flushCompileCache ( keepDeserializedCache ?: boolean ) : void
3031}
You can’t perform that action at this time.
0 commit comments