mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-05 16:38:05 -06:00
Fix the issue with not serializing impliedFormat when signature and version of the file are same (#48614)
* When checking for incremental correctness always calculate signature * Fix the issue with not serializing impliedFormat when signature == version of the file
This commit is contained in:
parent
02787cfde1
commit
a1e77edfdf
@ -348,7 +348,7 @@ namespace ts {
|
||||
* This is to allow the callers to be able to actually remove affected file only when the operation is complete
|
||||
* eg. if during diagnostics check cancellation token ends up cancelling the request, the affected file should be retained
|
||||
*/
|
||||
function getNextAffectedFile(state: BuilderProgramState, cancellationToken: CancellationToken | undefined, computeHash: BuilderState.ComputeHash): SourceFile | Program | undefined {
|
||||
function getNextAffectedFile(state: BuilderProgramState, cancellationToken: CancellationToken | undefined, computeHash: BuilderState.ComputeHash, host: BuilderProgramHost): SourceFile | Program | undefined {
|
||||
while (true) {
|
||||
const { affectedFiles } = state;
|
||||
if (affectedFiles) {
|
||||
@ -359,7 +359,7 @@ namespace ts {
|
||||
if (!seenAffectedFiles.has(affectedFile.resolvedPath)) {
|
||||
// Set the next affected file as seen and remove the cached semantic diagnostics
|
||||
state.affectedFilesIndex = affectedFilesIndex;
|
||||
handleDtsMayChangeOfAffectedFile(state, affectedFile, cancellationToken, computeHash);
|
||||
handleDtsMayChangeOfAffectedFile(state, affectedFile, cancellationToken, computeHash, host);
|
||||
return affectedFile;
|
||||
}
|
||||
affectedFilesIndex++;
|
||||
@ -437,7 +437,7 @@ namespace ts {
|
||||
* Handles semantic diagnostics and dts emit for affectedFile and files, that are referencing modules that export entities from affected file
|
||||
* This is because even though js emit doesnt change, dts emit / type used can change resulting in need for dts emit and js change
|
||||
*/
|
||||
function handleDtsMayChangeOfAffectedFile(state: BuilderProgramState, affectedFile: SourceFile, cancellationToken: CancellationToken | undefined, computeHash: BuilderState.ComputeHash) {
|
||||
function handleDtsMayChangeOfAffectedFile(state: BuilderProgramState, affectedFile: SourceFile, cancellationToken: CancellationToken | undefined, computeHash: BuilderState.ComputeHash, host: BuilderProgramHost) {
|
||||
removeSemanticDiagnosticsOf(state, affectedFile.resolvedPath);
|
||||
|
||||
// If affected files is everything except default library, then nothing more to do
|
||||
@ -471,7 +471,7 @@ namespace ts {
|
||||
}
|
||||
|
||||
if (!state.compilerOptions.assumeChangesOnlyAffectDirectDependencies) {
|
||||
forEachReferencingModulesOfExportOfAffectedFile(state, affectedFile, (state, path) => handleDtsMayChangeOf(state, path, cancellationToken, computeHash));
|
||||
forEachReferencingModulesOfExportOfAffectedFile(state, affectedFile, (state, path) => handleDtsMayChangeOf(state, path, cancellationToken, computeHash, host));
|
||||
}
|
||||
}
|
||||
|
||||
@ -479,7 +479,7 @@ namespace ts {
|
||||
* Handle the dts may change, so they need to be added to pending emit if dts emit is enabled,
|
||||
* Also we need to make sure signature is updated for these files
|
||||
*/
|
||||
function handleDtsMayChangeOf(state: BuilderProgramState, path: Path, cancellationToken: CancellationToken | undefined, computeHash: BuilderState.ComputeHash): void {
|
||||
function handleDtsMayChangeOf(state: BuilderProgramState, path: Path, cancellationToken: CancellationToken | undefined, computeHash: BuilderState.ComputeHash, host: BuilderProgramHost): void {
|
||||
removeSemanticDiagnosticsOf(state, path);
|
||||
|
||||
if (!state.changedFilesSet.has(path)) {
|
||||
@ -499,7 +499,7 @@ namespace ts {
|
||||
cancellationToken,
|
||||
computeHash,
|
||||
state.currentAffectedFilesExportedModulesMap,
|
||||
/* useFileVersionAsSignature */ true
|
||||
!host.disableUseFileVersionAsSignature
|
||||
);
|
||||
// If not dts emit, nothing more to do
|
||||
if (getEmitDeclarations(state.compilerOptions)) {
|
||||
@ -755,13 +755,18 @@ namespace ts {
|
||||
const signature = state.currentAffectedFilesSignatures && state.currentAffectedFilesSignatures.get(key);
|
||||
const actualSignature = signature ?? value.signature;
|
||||
return value.version === actualSignature ?
|
||||
value.affectsGlobalScope ?
|
||||
{ version: value.version, signature: undefined, affectsGlobalScope: true, impliedFormat: value.impliedFormat } :
|
||||
value.affectsGlobalScope || value.impliedFormat ?
|
||||
// If file version is same as signature, dont serialize signature
|
||||
{ version: value.version, signature: undefined, affectsGlobalScope: value.affectsGlobalScope, impliedFormat: value.impliedFormat } :
|
||||
// If file info only contains version and signature and both are same we can just write string
|
||||
value.version :
|
||||
actualSignature !== undefined ?
|
||||
actualSignature !== undefined ? // If signature is not same as version, encode signature in the fileInfo
|
||||
signature === undefined ?
|
||||
// If we havent computed signature, use fileInfo as is
|
||||
value :
|
||||
// Serialize fileInfo with new updated signature
|
||||
{ version: value.version, signature, affectsGlobalScope: value.affectsGlobalScope, impliedFormat: value.impliedFormat } :
|
||||
// Signature of the FileInfo is undefined, serialize it as false
|
||||
{ version: value.version, signature: false, affectsGlobalScope: value.affectsGlobalScope, impliedFormat: value.impliedFormat };
|
||||
});
|
||||
|
||||
@ -1043,7 +1048,7 @@ namespace ts {
|
||||
* in that order would be used to write the files
|
||||
*/
|
||||
function emitNextAffectedFile(writeFile?: WriteFileCallback, cancellationToken?: CancellationToken, emitOnlyDtsFiles?: boolean, customTransformers?: CustomTransformers): AffectedFileResult<EmitResult> {
|
||||
let affected = getNextAffectedFile(state, cancellationToken, computeHash);
|
||||
let affected = getNextAffectedFile(state, cancellationToken, computeHash, host);
|
||||
let emitKind = BuilderFileEmit.Full;
|
||||
let isPendingEmitFile = false;
|
||||
if (!affected) {
|
||||
@ -1156,7 +1161,7 @@ namespace ts {
|
||||
*/
|
||||
function getSemanticDiagnosticsOfNextAffectedFile(cancellationToken?: CancellationToken, ignoreSourceFile?: (sourceFile: SourceFile) => boolean): AffectedFileResult<readonly Diagnostic[]> {
|
||||
while (true) {
|
||||
const affected = getNextAffectedFile(state, cancellationToken, computeHash);
|
||||
const affected = getNextAffectedFile(state, cancellationToken, computeHash, host);
|
||||
if (!affected) {
|
||||
// Done
|
||||
return undefined;
|
||||
|
||||
@ -81,7 +81,7 @@ namespace ts {
|
||||
export interface FileInfo {
|
||||
readonly version: string;
|
||||
signature: string | undefined;
|
||||
affectsGlobalScope: boolean | undefined;
|
||||
affectsGlobalScope: true | undefined;
|
||||
impliedFormat: number | undefined;
|
||||
}
|
||||
|
||||
|
||||
@ -191,7 +191,7 @@ LassieDog.getDogConfig = () => LASSIE_CONFIG;
|
||||
|
||||
|
||||
//// [/src/src-dogs/tsconfig.tsbuildinfo]
|
||||
{"program":{"fileNames":["../../lib/lib.es2020.full.d.ts","../src-types/dogconfig.d.ts","../src-types/index.d.ts","./dogconfig.ts","./dog.ts","./lassie/lassieconfig.ts","./lassie/lassiedog.ts","./index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},"-2632060142-export interface DogConfig {\r\n name: string;\r\n}\r\n","-5608794531-export * from './dogconfig.js';\r\n","1966273863-import { DogConfig } from 'src-types';\n\nexport const DOG_CONFIG: DogConfig = {\n name: 'Default dog',\n};\n","6091345804-import { DogConfig } from 'src-types';\nimport { DOG_CONFIG } from './dogconfig.js';\n\nexport abstract class Dog {\n\n public static getCapabilities(): DogConfig {\n return DOG_CONFIG;\n }\n}\n","4440579024-import { DogConfig } from 'src-types';\n\nexport const LASSIE_CONFIG: DogConfig = { name: 'Lassie' };\n","-32303727812-import { Dog } from '../dog.js';\nimport { LASSIE_CONFIG } from './lassieconfig.js';\n\nexport class LassieDog extends Dog {\n protected static getDogConfig = () => LASSIE_CONFIG;\n}\n","-15974991320-export * from 'src-types';\nexport * from './lassie/lassiedog.js';\n"],"options":{"composite":true,"declaration":true,"module":100},"fileIdsList":[[3,4],[3],[3,7],[5,6],[2]],"referencedMap":[[5,1],[4,2],[8,3],[6,2],[7,4],[3,5]],"exportedModulesMap":[[5,1],[4,2],[8,3],[6,2],[7,4],[3,5]],"semanticDiagnosticsPerFile":[1,5,4,8,6,7,2,3]},"version":"FakeTSVersion"}
|
||||
{"program":{"fileNames":["../../lib/lib.es2020.full.d.ts","../src-types/dogconfig.d.ts","../src-types/index.d.ts","./dogconfig.ts","./dog.ts","./lassie/lassieconfig.ts","./lassie/lassiedog.ts","./index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-2632060142-export interface DogConfig {\r\n name: string;\r\n}\r\n","impliedFormat":99},{"version":"-5608794531-export * from './dogconfig.js';\r\n","impliedFormat":99},{"version":"1966273863-import { DogConfig } from 'src-types';\n\nexport const DOG_CONFIG: DogConfig = {\n name: 'Default dog',\n};\n","impliedFormat":99},{"version":"6091345804-import { DogConfig } from 'src-types';\nimport { DOG_CONFIG } from './dogconfig.js';\n\nexport abstract class Dog {\n\n public static getCapabilities(): DogConfig {\n return DOG_CONFIG;\n }\n}\n","impliedFormat":99},{"version":"4440579024-import { DogConfig } from 'src-types';\n\nexport const LASSIE_CONFIG: DogConfig = { name: 'Lassie' };\n","impliedFormat":99},{"version":"-32303727812-import { Dog } from '../dog.js';\nimport { LASSIE_CONFIG } from './lassieconfig.js';\n\nexport class LassieDog extends Dog {\n protected static getDogConfig = () => LASSIE_CONFIG;\n}\n","impliedFormat":99},{"version":"-15974991320-export * from 'src-types';\nexport * from './lassie/lassiedog.js';\n","impliedFormat":99}],"options":{"composite":true,"declaration":true,"module":100},"fileIdsList":[[3,4],[3],[3,7],[5,6],[2]],"referencedMap":[[5,1],[4,2],[8,3],[6,2],[7,4],[3,5]],"exportedModulesMap":[[5,1],[4,2],[8,3],[6,2],[7,4],[3,5]],"semanticDiagnosticsPerFile":[1,5,4,8,6,7,2,3]},"version":"FakeTSVersion"}
|
||||
|
||||
//// [/src/src-dogs/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@ -235,31 +235,38 @@ LassieDog.getDogConfig = () => LASSIE_CONFIG;
|
||||
},
|
||||
"../src-types/dogconfig.d.ts": {
|
||||
"version": "-2632060142-export interface DogConfig {\r\n name: string;\r\n}\r\n",
|
||||
"signature": "-2632060142-export interface DogConfig {\r\n name: string;\r\n}\r\n"
|
||||
"signature": "-2632060142-export interface DogConfig {\r\n name: string;\r\n}\r\n",
|
||||
"impliedFormat": 99
|
||||
},
|
||||
"../src-types/index.d.ts": {
|
||||
"version": "-5608794531-export * from './dogconfig.js';\r\n",
|
||||
"signature": "-5608794531-export * from './dogconfig.js';\r\n"
|
||||
"signature": "-5608794531-export * from './dogconfig.js';\r\n",
|
||||
"impliedFormat": 99
|
||||
},
|
||||
"./dogconfig.ts": {
|
||||
"version": "1966273863-import { DogConfig } from 'src-types';\n\nexport const DOG_CONFIG: DogConfig = {\n name: 'Default dog',\n};\n",
|
||||
"signature": "1966273863-import { DogConfig } from 'src-types';\n\nexport const DOG_CONFIG: DogConfig = {\n name: 'Default dog',\n};\n"
|
||||
"signature": "1966273863-import { DogConfig } from 'src-types';\n\nexport const DOG_CONFIG: DogConfig = {\n name: 'Default dog',\n};\n",
|
||||
"impliedFormat": 99
|
||||
},
|
||||
"./dog.ts": {
|
||||
"version": "6091345804-import { DogConfig } from 'src-types';\nimport { DOG_CONFIG } from './dogconfig.js';\n\nexport abstract class Dog {\n\n public static getCapabilities(): DogConfig {\n return DOG_CONFIG;\n }\n}\n",
|
||||
"signature": "6091345804-import { DogConfig } from 'src-types';\nimport { DOG_CONFIG } from './dogconfig.js';\n\nexport abstract class Dog {\n\n public static getCapabilities(): DogConfig {\n return DOG_CONFIG;\n }\n}\n"
|
||||
"signature": "6091345804-import { DogConfig } from 'src-types';\nimport { DOG_CONFIG } from './dogconfig.js';\n\nexport abstract class Dog {\n\n public static getCapabilities(): DogConfig {\n return DOG_CONFIG;\n }\n}\n",
|
||||
"impliedFormat": 99
|
||||
},
|
||||
"./lassie/lassieconfig.ts": {
|
||||
"version": "4440579024-import { DogConfig } from 'src-types';\n\nexport const LASSIE_CONFIG: DogConfig = { name: 'Lassie' };\n",
|
||||
"signature": "4440579024-import { DogConfig } from 'src-types';\n\nexport const LASSIE_CONFIG: DogConfig = { name: 'Lassie' };\n"
|
||||
"signature": "4440579024-import { DogConfig } from 'src-types';\n\nexport const LASSIE_CONFIG: DogConfig = { name: 'Lassie' };\n",
|
||||
"impliedFormat": 99
|
||||
},
|
||||
"./lassie/lassiedog.ts": {
|
||||
"version": "-32303727812-import { Dog } from '../dog.js';\nimport { LASSIE_CONFIG } from './lassieconfig.js';\n\nexport class LassieDog extends Dog {\n protected static getDogConfig = () => LASSIE_CONFIG;\n}\n",
|
||||
"signature": "-32303727812-import { Dog } from '../dog.js';\nimport { LASSIE_CONFIG } from './lassieconfig.js';\n\nexport class LassieDog extends Dog {\n protected static getDogConfig = () => LASSIE_CONFIG;\n}\n"
|
||||
"signature": "-32303727812-import { Dog } from '../dog.js';\nimport { LASSIE_CONFIG } from './lassieconfig.js';\n\nexport class LassieDog extends Dog {\n protected static getDogConfig = () => LASSIE_CONFIG;\n}\n",
|
||||
"impliedFormat": 99
|
||||
},
|
||||
"./index.ts": {
|
||||
"version": "-15974991320-export * from 'src-types';\nexport * from './lassie/lassiedog.js';\n",
|
||||
"signature": "-15974991320-export * from 'src-types';\nexport * from './lassie/lassiedog.js';\n"
|
||||
"signature": "-15974991320-export * from 'src-types';\nexport * from './lassie/lassiedog.js';\n",
|
||||
"impliedFormat": 99
|
||||
}
|
||||
},
|
||||
"options": {
|
||||
@ -325,7 +332,7 @@ LassieDog.getDogConfig = () => LASSIE_CONFIG;
|
||||
]
|
||||
},
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1802
|
||||
"size": 2019
|
||||
}
|
||||
|
||||
//// [/src/src-types/dogconfig.d.ts]
|
||||
@ -347,7 +354,7 @@ export * from './dogconfig.js';
|
||||
|
||||
|
||||
//// [/src/src-types/tsconfig.tsbuildinfo]
|
||||
{"program":{"fileNames":["../../lib/lib.es2020.full.d.ts","./dogconfig.ts","./index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},"-5575793279-export interface DogConfig {\n name: string;\n}","-6189272282-export * from './dogconfig.js';"],"options":{"composite":true,"declaration":true,"module":100},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[[3,1]],"semanticDiagnosticsPerFile":[1,2,3]},"version":"FakeTSVersion"}
|
||||
{"program":{"fileNames":["../../lib/lib.es2020.full.d.ts","./dogconfig.ts","./index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5575793279-export interface DogConfig {\n name: string;\n}","impliedFormat":99},{"version":"-6189272282-export * from './dogconfig.js';","impliedFormat":99}],"options":{"composite":true,"declaration":true,"module":100},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[[3,1]],"semanticDiagnosticsPerFile":[1,2,3]},"version":"FakeTSVersion"}
|
||||
|
||||
//// [/src/src-types/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@ -371,11 +378,13 @@ export * from './dogconfig.js';
|
||||
},
|
||||
"./dogconfig.ts": {
|
||||
"version": "-5575793279-export interface DogConfig {\n name: string;\n}",
|
||||
"signature": "-5575793279-export interface DogConfig {\n name: string;\n}"
|
||||
"signature": "-5575793279-export interface DogConfig {\n name: string;\n}",
|
||||
"impliedFormat": 99
|
||||
},
|
||||
"./index.ts": {
|
||||
"version": "-6189272282-export * from './dogconfig.js';",
|
||||
"signature": "-6189272282-export * from './dogconfig.js';"
|
||||
"signature": "-6189272282-export * from './dogconfig.js';",
|
||||
"impliedFormat": 99
|
||||
}
|
||||
},
|
||||
"options": {
|
||||
@ -400,6 +409,6 @@ export * from './dogconfig.js';
|
||||
]
|
||||
},
|
||||
"version": "FakeTSVersion",
|
||||
"size": 829
|
||||
"size": 891
|
||||
}
|
||||
|
||||
|
||||
@ -198,7 +198,7 @@ export type { TheNum } from './const.cjs';
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg2/build/tsconfig.tsbuildinfo]
|
||||
{"program":{"fileNames":["../../../../../../../a/lib/lib.es2020.full.d.ts","../const.cts","../index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},"-11202312776-export type TheNum = 42;","-9668872159-export type { TheNum } from './const.cjs';"],"options":{"composite":true,"module":100,"outDir":"./"},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[[3,1]],"semanticDiagnosticsPerFile":[1,2,3]},"version":"FakeTSVersion"}
|
||||
{"program":{"fileNames":["../../../../../../../a/lib/lib.es2020.full.d.ts","../const.cts","../index.ts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-11202312776-export type TheNum = 42;","impliedFormat":1},{"version":"-9668872159-export type { TheNum } from './const.cjs';","impliedFormat":99}],"options":{"composite":true,"module":100,"outDir":"./"},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[[3,1]],"semanticDiagnosticsPerFile":[1,2,3]},"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg2/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@ -222,11 +222,13 @@ export type { TheNum } from './const.cjs';
|
||||
},
|
||||
"../const.cts": {
|
||||
"version": "-11202312776-export type TheNum = 42;",
|
||||
"signature": "-11202312776-export type TheNum = 42;"
|
||||
"signature": "-11202312776-export type TheNum = 42;",
|
||||
"impliedFormat": 1
|
||||
},
|
||||
"../index.ts": {
|
||||
"version": "-9668872159-export type { TheNum } from './const.cjs';",
|
||||
"signature": "-9668872159-export type { TheNum } from './const.cjs';"
|
||||
"signature": "-9668872159-export type { TheNum } from './const.cjs';",
|
||||
"impliedFormat": 99
|
||||
}
|
||||
},
|
||||
"options": {
|
||||
@ -251,7 +253,7 @@ export type { TheNum } from './const.cjs';
|
||||
]
|
||||
},
|
||||
"version": "FakeTSVersion",
|
||||
"size": 826
|
||||
"size": 887
|
||||
}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/index.js]
|
||||
@ -699,7 +701,7 @@ exitCode:: ExitStatus.undefined
|
||||
//// [/user/username/projects/myproject/packages/pkg2/build/const.cjs] file changed its modified time
|
||||
//// [/user/username/projects/myproject/packages/pkg2/build/const.d.cts] file changed its modified time
|
||||
//// [/user/username/projects/myproject/packages/pkg2/build/tsconfig.tsbuildinfo]
|
||||
{"program":{"fileNames":["../../../../../../../a/lib/lib.es2020.full.d.ts","../const.cts","../index.cts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},"-11202312776-export type TheNum = 42;",{"version":"-9668872159-export type { TheNum } from './const.cjs';","signature":"-9835135925-export type { TheNum } from './const.cjs';\n","impliedFormat":1}],"options":{"composite":true,"module":100,"outDir":"./"},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[[3,1]],"semanticDiagnosticsPerFile":[1,2,3]},"version":"FakeTSVersion"}
|
||||
{"program":{"fileNames":["../../../../../../../a/lib/lib.es2020.full.d.ts","../const.cts","../index.cts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-11202312776-export type TheNum = 42;","impliedFormat":1},{"version":"-9668872159-export type { TheNum } from './const.cjs';","signature":"-9835135925-export type { TheNum } from './const.cjs';\n","impliedFormat":1}],"options":{"composite":true,"module":100,"outDir":"./"},"fileIdsList":[[2]],"referencedMap":[[3,1]],"exportedModulesMap":[[3,1]],"semanticDiagnosticsPerFile":[1,2,3]},"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg2/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@ -723,7 +725,8 @@ exitCode:: ExitStatus.undefined
|
||||
},
|
||||
"../const.cts": {
|
||||
"version": "-11202312776-export type TheNum = 42;",
|
||||
"signature": "-11202312776-export type TheNum = 42;"
|
||||
"signature": "-11202312776-export type TheNum = 42;",
|
||||
"impliedFormat": 1
|
||||
},
|
||||
"../index.cts": {
|
||||
"version": "-9668872159-export type { TheNum } from './const.cjs';",
|
||||
@ -753,7 +756,7 @@ exitCode:: ExitStatus.undefined
|
||||
]
|
||||
},
|
||||
"version": "FakeTSVersion",
|
||||
"size": 928
|
||||
"size": 958
|
||||
}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg2/build/index.cjs]
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user