mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
+52
-6
@@ -3,6 +3,7 @@ import {
|
||||
AffectedFileResult,
|
||||
append,
|
||||
arrayFrom,
|
||||
arrayIsEqualTo,
|
||||
arrayToMap,
|
||||
BuilderProgram,
|
||||
BuilderProgramHost,
|
||||
@@ -10,6 +11,7 @@ import {
|
||||
BuildInfo,
|
||||
BuildInfoFileVersionMap,
|
||||
CancellationToken,
|
||||
combinePaths,
|
||||
CommandLineOption,
|
||||
compareStringsCaseSensitive,
|
||||
compareValues,
|
||||
@@ -60,6 +62,7 @@ import {
|
||||
isIncrementalCompilation,
|
||||
isJsonSourceFile,
|
||||
isNumber,
|
||||
isPackageJsonInfo,
|
||||
isString,
|
||||
map,
|
||||
mapDefinedIterator,
|
||||
@@ -80,6 +83,8 @@ import {
|
||||
skipAlias,
|
||||
skipTypeCheckingIgnoringNoCheck,
|
||||
some,
|
||||
sortAndDeduplicate,
|
||||
SortedReadonlyArray,
|
||||
SourceFile,
|
||||
sourceFileMayBeEmitted,
|
||||
SourceMapEmitResult,
|
||||
@@ -180,6 +185,7 @@ export interface ReusableBuilderProgramState extends BuilderState {
|
||||
latestChangedDtsFile: string | undefined;
|
||||
/** Recorded if program had errors */
|
||||
hasErrors?: boolean;
|
||||
packageJsons?: SortedReadonlyArray<string>;
|
||||
}
|
||||
|
||||
// dprint-ignore
|
||||
@@ -260,6 +266,7 @@ export interface BuilderProgramState extends BuilderState, ReusableBuilderProgra
|
||||
/** Already seen program emit */
|
||||
seenProgramEmit: BuilderFileEmit | undefined;
|
||||
hasErrorsFromOldState?: boolean;
|
||||
packageJsonsFromOldState?: SortedReadonlyArray<string>;
|
||||
}
|
||||
|
||||
interface BuilderProgramStateWithDefinedProgram extends BuilderProgramState {
|
||||
@@ -365,6 +372,7 @@ function createBuilderProgramState(
|
||||
canCopyEmitDiagnostics = false;
|
||||
}
|
||||
state.hasErrorsFromOldState = oldState!.hasErrors;
|
||||
state.packageJsonsFromOldState = oldState!.packageJsons;
|
||||
}
|
||||
else {
|
||||
// We arent using old state, so atleast emit buildInfo with current information
|
||||
@@ -1139,6 +1147,7 @@ export interface IncrementalBuildInfoBase extends BuildInfo {
|
||||
latestChangedDtsFile?: string | undefined;
|
||||
errors: true | undefined;
|
||||
checkPending: true | undefined;
|
||||
packageJsons: string[] | undefined;
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
@@ -1187,6 +1196,7 @@ export interface NonIncrementalBuildInfo extends BuildInfo {
|
||||
root: readonly string[];
|
||||
errors: true | undefined;
|
||||
checkPending: true | undefined;
|
||||
packageJsons: string[] | undefined;
|
||||
}
|
||||
|
||||
function isNonIncrementalBuildInfo(info: BuildInfo): info is NonIncrementalBuildInfo {
|
||||
@@ -1217,6 +1227,26 @@ function ensureHasErrorsForState(state: BuilderProgramStateWithDefinedProgram) {
|
||||
}
|
||||
}
|
||||
|
||||
function ensurePackageJsonsForState(state: BuilderProgramStateWithDefinedProgram, host: BuilderProgramHost) {
|
||||
if (state.packageJsons !== undefined) return;
|
||||
let packageJsons: string[] = [];
|
||||
if (state.program.getCompilerOptions().configFilePath) {
|
||||
const internalMap = state.program.getModuleResolutionCache()?.getPackageJsonInfoCache().getInternalMap();
|
||||
if (internalMap) {
|
||||
internalMap.forEach(value => {
|
||||
if (isPackageJsonInfo(value)) {
|
||||
let path = combinePaths(value.packageDirectory, "package.json");
|
||||
if (host.realpath) {
|
||||
path = host.realpath(path);
|
||||
}
|
||||
packageJsons.push(path);
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
state.packageJsons = sortAndDeduplicate(packageJsons);
|
||||
}
|
||||
|
||||
function hasSyntaxOrGlobalErrors(state: BuilderProgramStateWithDefinedProgram) {
|
||||
return !!state.program.getConfigFileParsingDiagnostics().length ||
|
||||
!!state.program.getSyntacticDiagnostics().length ||
|
||||
@@ -1224,15 +1254,17 @@ function hasSyntaxOrGlobalErrors(state: BuilderProgramStateWithDefinedProgram) {
|
||||
!!state.program.getGlobalDiagnostics().length;
|
||||
}
|
||||
|
||||
function getBuildInfoEmitPending(state: BuilderProgramStateWithDefinedProgram) {
|
||||
function getBuildInfoEmitPending(state: BuilderProgramStateWithDefinedProgram, host: BuilderProgramHost) {
|
||||
ensureHasErrorsForState(state);
|
||||
return state.buildInfoEmitPending ??= !!state.hasErrorsFromOldState !== !!state.hasErrors;
|
||||
ensurePackageJsonsForState(state, host);
|
||||
return state.buildInfoEmitPending ??= !!state.hasErrorsFromOldState !== !!state.hasErrors ||
|
||||
!arrayIsEqualTo(state.packageJsons, state.packageJsonsFromOldState);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the program information to be emitted in buildInfo so that we can use it to create new program
|
||||
*/
|
||||
function getBuildInfo(state: BuilderProgramStateWithDefinedProgram): BuildInfo {
|
||||
function getBuildInfo(state: BuilderProgramStateWithDefinedProgram, host: BuilderProgramHost): BuildInfo {
|
||||
const currentDirectory = state.program.getCurrentDirectory();
|
||||
const buildInfoDirectory = getDirectoryPath(getNormalizedAbsolutePath(getTsBuildInfoEmitOutputFilePath(state.compilerOptions)!, currentDirectory));
|
||||
// Convert the file name to Path here if we set the fileName instead to optimize multiple d.ts file emits and having to compute Canonical path
|
||||
@@ -1241,11 +1273,13 @@ function getBuildInfo(state: BuilderProgramStateWithDefinedProgram): BuildInfo {
|
||||
const fileNameToFileId = new Map<string, IncrementalBuildInfoFileId>();
|
||||
const rootFileNames = new Set(state.program.getRootFileNames().map(f => toPath(f, currentDirectory, state.program.getCanonicalFileName)));
|
||||
ensureHasErrorsForState(state);
|
||||
ensurePackageJsonsForState(state, host);
|
||||
if (!isIncrementalCompilation(state.compilerOptions)) {
|
||||
const buildInfo: NonIncrementalBuildInfo = {
|
||||
root: arrayFrom(rootFileNames, r => relativeToBuildInfo(r)),
|
||||
errors: state.hasErrors ? true : undefined,
|
||||
checkPending: state.checkPending,
|
||||
packageJsons: toPackageJsons(),
|
||||
version,
|
||||
};
|
||||
return buildInfo;
|
||||
@@ -1281,6 +1315,7 @@ function getBuildInfo(state: BuilderProgramStateWithDefinedProgram): BuildInfo {
|
||||
state.programEmitPending, // Actual value
|
||||
errors: state.hasErrors ? true : undefined,
|
||||
checkPending: state.checkPending,
|
||||
packageJsons: toPackageJsons(),
|
||||
version,
|
||||
};
|
||||
return buildInfo;
|
||||
@@ -1373,6 +1408,7 @@ function getBuildInfo(state: BuilderProgramStateWithDefinedProgram): BuildInfo {
|
||||
latestChangedDtsFile,
|
||||
errors: state.hasErrors ? true : undefined,
|
||||
checkPending: state.checkPending,
|
||||
packageJsons: toPackageJsons(),
|
||||
version,
|
||||
};
|
||||
return buildInfo;
|
||||
@@ -1564,6 +1600,10 @@ function getBuildInfo(state: BuilderProgramStateWithDefinedProgram): BuildInfo {
|
||||
}
|
||||
return changeFileSet;
|
||||
}
|
||||
|
||||
function toPackageJsons() {
|
||||
return state.packageJsons?.length ? state.packageJsons.map(relativeToBuildInfo) : undefined;
|
||||
}
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
@@ -1683,7 +1723,7 @@ export function createBuilderProgram(
|
||||
}
|
||||
|
||||
const state = createBuilderProgramState(newProgram, oldState);
|
||||
newProgram.getBuildInfo = () => getBuildInfo(toBuilderProgramStateWithDefinedProgram(state));
|
||||
newProgram.getBuildInfo = () => getBuildInfo(toBuilderProgramStateWithDefinedProgram(state), host);
|
||||
|
||||
// To ensure that we arent storing any references to old program or new program without state
|
||||
newProgram = undefined!;
|
||||
@@ -1722,7 +1762,7 @@ export function createBuilderProgram(
|
||||
cancellationToken: CancellationToken | undefined,
|
||||
): EmitResult {
|
||||
Debug.assert(isBuilderProgramStateWithDefinedProgram(state));
|
||||
if (getBuildInfoEmitPending(state)) {
|
||||
if (getBuildInfoEmitPending(state, host)) {
|
||||
const result = state.program.emitBuildInfo(
|
||||
writeFile || maybeBind(host, host.writeFile),
|
||||
cancellationToken,
|
||||
@@ -1809,7 +1849,7 @@ export function createBuilderProgram(
|
||||
|
||||
if (!affected) {
|
||||
// Emit buildinfo if pending
|
||||
if (isForDtsErrors || !getBuildInfoEmitPending(state)) return undefined;
|
||||
if (isForDtsErrors || !getBuildInfoEmitPending(state, host)) return undefined;
|
||||
const affected = state.program;
|
||||
const result = affected.emitBuildInfo(
|
||||
writeFile || maybeBind(host, host.writeFile),
|
||||
@@ -2282,6 +2322,7 @@ export function createBuilderProgramUsingIncrementalBuildInfo(
|
||||
programEmitPending: buildInfo.pendingEmit === undefined ? undefined : toProgramEmitPending(buildInfo.pendingEmit, buildInfo.options),
|
||||
hasErrors: buildInfo.errors,
|
||||
checkPending: buildInfo.checkPending,
|
||||
packageJsons: toPackageJsons(),
|
||||
};
|
||||
}
|
||||
else {
|
||||
@@ -2320,6 +2361,7 @@ export function createBuilderProgramUsingIncrementalBuildInfo(
|
||||
emitSignatures: emitSignatures?.size ? emitSignatures : undefined,
|
||||
hasErrors: buildInfo.errors,
|
||||
checkPending: buildInfo.checkPending,
|
||||
packageJsons: toPackageJsons(),
|
||||
};
|
||||
}
|
||||
|
||||
@@ -2389,6 +2431,10 @@ export function createBuilderProgramUsingIncrementalBuildInfo(
|
||||
function toPerFileEmitDiagnostics(diagnostics: readonly IncrementalBuildInfoEmitDiagnostic[] | undefined): Map<Path, readonly ReusableDiagnostic[]> | undefined {
|
||||
return diagnostics && arrayToMap(diagnostics, value => toFilePath(value[0]), value => value[1]);
|
||||
}
|
||||
|
||||
function toPackageJsons() {
|
||||
return buildInfo.packageJsons?.map(toAbsolutePath) as unknown as SortedReadonlyArray<string> ?? emptyArray;
|
||||
}
|
||||
}
|
||||
|
||||
/** @internal */
|
||||
|
||||
@@ -29,6 +29,7 @@ export interface BuilderProgramHost {
|
||||
* this callback if present would be used to write files
|
||||
*/
|
||||
writeFile?: WriteFileCallback;
|
||||
realpath?(path: string): string;
|
||||
/**
|
||||
* Store information about the signature
|
||||
*
|
||||
|
||||
@@ -415,11 +415,11 @@ interface SolutionBuilderState<T extends BuilderProgram> extends WatchFactory<Wa
|
||||
readonly allWatchedInputFiles: Map<ResolvedConfigFilePath, Map<string, FileWatcher>>;
|
||||
readonly allWatchedConfigFiles: Map<ResolvedConfigFilePath, FileWatcher>;
|
||||
readonly allWatchedExtendedConfigFiles: Map<Path, SharedExtendedConfigFileWatcher<ResolvedConfigFilePath>>;
|
||||
readonly allWatchedPackageJsonFiles: Map<ResolvedConfigFilePath, Map<Path, FileWatcher>>;
|
||||
readonly allWatchedPackageJsonFiles: Map<ResolvedConfigFilePath, Map<string, FileWatcher>>;
|
||||
readonly filesWatched: Map<Path, FileWatcherWithModifiedTime | Date>;
|
||||
readonly outputTimeStamps: Map<ResolvedConfigFilePath, Map<Path, Date>>;
|
||||
|
||||
readonly lastCachedPackageJsonLookups: Map<ResolvedConfigFilePath, Set<string> | undefined>;
|
||||
readonly allWatchedPackageJsons: Map<ResolvedConfigFilePath, Set<string> | undefined>;
|
||||
|
||||
timerToBuildInvalidatedProject: any;
|
||||
reportFileChangeDetected: boolean;
|
||||
@@ -539,8 +539,7 @@ function createSolutionBuilderState<T extends BuilderProgram>(watch: boolean, ho
|
||||
allWatchedExtendedConfigFiles: new Map(),
|
||||
allWatchedPackageJsonFiles: new Map(),
|
||||
filesWatched: new Map(),
|
||||
|
||||
lastCachedPackageJsonLookups: new Map(),
|
||||
allWatchedPackageJsons: new Map(),
|
||||
|
||||
timerToBuildInvalidatedProject: undefined,
|
||||
reportFileChangeDetected: false,
|
||||
@@ -679,7 +678,7 @@ function createStateBuildOrder<T extends BuilderProgram>(state: SolutionBuilderS
|
||||
mutateMapSkippingNewValues(state.projectErrorsReported, currentProjects, noopOnDelete);
|
||||
mutateMapSkippingNewValues(state.buildInfoCache, currentProjects, noopOnDelete);
|
||||
mutateMapSkippingNewValues(state.outputTimeStamps, currentProjects, noopOnDelete);
|
||||
mutateMapSkippingNewValues(state.lastCachedPackageJsonLookups, currentProjects, noopOnDelete);
|
||||
mutateMapSkippingNewValues(state.allWatchedPackageJsons, currentProjects, noopOnDelete);
|
||||
|
||||
// Remove watches for the program no longer in the solution
|
||||
if (state.watch) {
|
||||
@@ -1055,17 +1054,6 @@ function createBuildOrUpdateInvalidedProject<T extends BuilderProgram>(
|
||||
config.projectReferences,
|
||||
);
|
||||
if (state.watch) {
|
||||
const internalMap = state.moduleResolutionCache?.getPackageJsonInfoCache().getInternalMap();
|
||||
state.lastCachedPackageJsonLookups.set(
|
||||
projectPath,
|
||||
internalMap && new Set(arrayFrom(
|
||||
internalMap.values(),
|
||||
data =>
|
||||
state.host.realpath && (isPackageJsonInfo(data) || data.directoryExists) ?
|
||||
state.host.realpath(combinePaths(data.packageDirectory, "package.json")) :
|
||||
combinePaths(data.packageDirectory, "package.json"),
|
||||
)),
|
||||
);
|
||||
state.builderPrograms.set(projectPath, program);
|
||||
}
|
||||
step++;
|
||||
@@ -1770,12 +1758,17 @@ function getUpToDateStatusWorker<T extends BuilderProgram>(state: SolutionBuilde
|
||||
if (extendedConfigStatus) return extendedConfigStatus;
|
||||
|
||||
// Check package file time
|
||||
const packageJsonLookups = state.lastCachedPackageJsonLookups.get(resolvedPath);
|
||||
const dependentPackageFileStatus = packageJsonLookups && forEachKey(
|
||||
packageJsonLookups,
|
||||
path => checkConfigFileUpToDateStatus(state, path, oldestOutputFileTime, oldestOutputFileName),
|
||||
const packageJsonStatus = forEach(
|
||||
(buildInfo as IncrementalBuildInfo | NonIncrementalBuildInfo).packageJsons,
|
||||
packageJson =>
|
||||
checkConfigFileUpToDateStatus(
|
||||
state,
|
||||
getNormalizedAbsolutePath(packageJson, getDirectoryPath(getNormalizedAbsolutePath(buildInfoPath, host.getCurrentDirectory()))),
|
||||
oldestOutputFileTime,
|
||||
oldestOutputFileName,
|
||||
),
|
||||
);
|
||||
if (dependentPackageFileStatus) return dependentPackageFileStatus;
|
||||
if (packageJsonStatus) return packageJsonStatus;
|
||||
|
||||
// Up to date
|
||||
return {
|
||||
@@ -2199,10 +2192,18 @@ function watchInputFiles<T extends BuilderProgram>(state: SolutionBuilderState<T
|
||||
}
|
||||
|
||||
function watchPackageJsonFiles<T extends BuilderProgram>(state: SolutionBuilderState<T>, resolved: ResolvedConfigFileName, resolvedPath: ResolvedConfigFilePath, parsed: ParsedCommandLine) {
|
||||
if (!state.watch || !state.lastCachedPackageJsonLookups) return;
|
||||
if (!state.watch) return;
|
||||
const buildInfoPath = getTsBuildInfoEmitOutputFilePath(parsed.options)!;
|
||||
const buildInfoCacheEntry = getBuildInfoCacheEntry(state, buildInfoPath, resolvedPath);
|
||||
mutateMap(
|
||||
getOrCreateValueMapFromConfigFileMap(state.allWatchedPackageJsonFiles, resolvedPath),
|
||||
state.lastCachedPackageJsonLookups.get(resolvedPath),
|
||||
new Set(
|
||||
buildInfoCacheEntry?.buildInfo ?
|
||||
(buildInfoCacheEntry.buildInfo as IncrementalBuildInfo | NonIncrementalBuildInfo).packageJsons?.map(
|
||||
f => getNormalizedAbsolutePath(f, getDirectoryPath(getNormalizedAbsolutePath(buildInfoPath, state.host.getCurrentDirectory()))),
|
||||
) :
|
||||
undefined,
|
||||
),
|
||||
{
|
||||
createNewValue: input =>
|
||||
watchFile(
|
||||
|
||||
@@ -9672,6 +9672,7 @@ declare namespace ts {
|
||||
* this callback if present would be used to write files
|
||||
*/
|
||||
writeFile?: WriteFileCallback;
|
||||
realpath?(path: string): string;
|
||||
}
|
||||
/**
|
||||
* Builder to manage the program state changes
|
||||
|
||||
+6
-2
@@ -90,7 +90,7 @@ export const api = ky.extend({});
|
||||
|
||||
|
||||
//// [/home/src/workspaces/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.esnext.full.d.ts","./node_modules/ky/distribution/index.d.ts","./index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"10101889135-type KyInstance = {\n extend(options: Record<string,unknown>): KyInstance;\n}\ndeclare const ky: KyInstance;\nexport default ky;\n","impliedFormat":99},{"version":"-383421929-import ky from 'ky';\nexport const api = ky.extend({});\n","impliedFormat":99}],"root":[3],"options":{"declaration":true,"module":199,"skipDefaultLibCheck":true,"skipLibCheck":true},"referencedMap":[[3,1]],"emitDiagnosticsPerFile":[[3,[{"start":34,"length":3,"messageText":"Exported variable 'api' has or is using name 'KyInstance' from external module \"/home/src/workspaces/project/node_modules/ky/distribution/index\" but cannot be named.","category":1,"code":4023}]]],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.esnext.full.d.ts","./node_modules/ky/distribution/index.d.ts","./index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"10101889135-type KyInstance = {\n extend(options: Record<string,unknown>): KyInstance;\n}\ndeclare const ky: KyInstance;\nexport default ky;\n","impliedFormat":99},{"version":"-383421929-import ky from 'ky';\nexport const api = ky.extend({});\n","impliedFormat":99}],"root":[3],"options":{"declaration":true,"module":199,"skipDefaultLibCheck":true,"skipLibCheck":true},"referencedMap":[[3,1]],"emitDiagnosticsPerFile":[[3,[{"start":34,"length":3,"messageText":"Exported variable 'api' has or is using name 'KyInstance' from external module \"/home/src/workspaces/project/node_modules/ky/distribution/index\" but cannot be named.","category":1,"code":4023}]]],"packageJsons":["./node_modules/ky/package.json","./package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -166,8 +166,12 @@ export const api = ky.extend({});
|
||||
]
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/ky/package.json",
|
||||
"./package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1345
|
||||
"size": 1412
|
||||
}
|
||||
|
||||
|
||||
|
||||
+6
-2
@@ -91,7 +91,7 @@ export const api = ky.extend({});
|
||||
|
||||
|
||||
//// [/home/src/workspaces/project/tsconfig.tsbuildinfo]
|
||||
{"root":["./index.ts"],"errors":true,"version":"FakeTSVersion"}
|
||||
{"root":["./index.ts"],"errors":true,"packageJsons":["./node_modules/ky/package.json","./package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -99,8 +99,12 @@ export const api = ky.extend({});
|
||||
"./index.ts"
|
||||
],
|
||||
"errors": true,
|
||||
"packageJsons": [
|
||||
"./node_modules/ky/package.json",
|
||||
"./package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 63
|
||||
"size": 130
|
||||
}
|
||||
|
||||
|
||||
|
||||
+11
-4
@@ -136,15 +136,18 @@ b/src/index.ts
|
||||
|
||||
|
||||
//// [/home/src/workspaces/project/a/tsconfig.tsbuildinfo]
|
||||
{"root":["./src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["./src/index.ts"],"packageJsons":["../node_modules/@types/pg/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/a/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"./src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../node_modules/@types/pg/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 53
|
||||
"size": 111
|
||||
}
|
||||
|
||||
//// [/home/src/workspaces/project/b/src/index.js]
|
||||
@@ -153,15 +156,19 @@ pg.foo();
|
||||
|
||||
|
||||
//// [/home/src/workspaces/project/b/tsconfig.tsbuildinfo]
|
||||
{"root":["./src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["./src/index.ts"],"packageJsons":["./package.json","../node_modules/@types/pg/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/b/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"./src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"./package.json",
|
||||
"../node_modules/@types/pg/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 53
|
||||
"size": 128
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -213,15 +213,18 @@ exports.theNum = 42;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo]
|
||||
{"root":["../index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../index.ts"],"packageJsons":["../../pkg2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"../index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../../pkg2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 50
|
||||
"size": 93
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -210,15 +210,18 @@ exports.theNum = 42;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo]
|
||||
{"root":["../index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../index.ts"],"packageJsons":["../../pkg2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"../index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../../pkg2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 50
|
||||
"size": 93
|
||||
}
|
||||
|
||||
|
||||
|
||||
+11
-4
@@ -163,7 +163,7 @@ export {};
|
||||
|
||||
|
||||
//// [/home/src/workspaces/project/packages/a/types/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../tslibs/ts/lib/lib.esnext.full.d.ts","../index.js","../test/index.js"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-15642581130-export const a = 'a';","signature":"-13259723213-export const a: \"a\";\n","impliedFormat":99},{"version":"-3920874422-import 'a';","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[2,3],"options":{"checkJs":true,"composite":true,"declaration":true,"emitDeclarationOnly":true,"module":199,"outDir":"./"},"referencedMap":[[3,1]],"latestChangedDtsFile":"./test/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../tslibs/ts/lib/lib.esnext.full.d.ts","../index.js","../test/index.js"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-15642581130-export const a = 'a';","signature":"-13259723213-export const a: \"a\";\n","impliedFormat":99},{"version":"-3920874422-import 'a';","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[2,3],"options":{"checkJs":true,"composite":true,"declaration":true,"emitDeclarationOnly":true,"module":199,"outDir":"./"},"referencedMap":[[3,1]],"latestChangedDtsFile":"./test/index.d.ts","packageJsons":["../package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/packages/a/types/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -234,20 +234,27 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./test/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1070
|
||||
"size": 1105
|
||||
}
|
||||
|
||||
//// [/home/src/workspaces/project/packages/b/tsconfig.tsbuildinfo]
|
||||
{"root":["./index.js"],"version":"FakeTSVersion"}
|
||||
{"root":["./index.js"],"packageJsons":["../a/package.json","./package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/packages/b/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"./index.js"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../a/package.json",
|
||||
"./package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 49
|
||||
"size": 103
|
||||
}
|
||||
|
||||
|
||||
|
||||
+11
-4
@@ -131,7 +131,7 @@ export {};
|
||||
|
||||
|
||||
//// [/home/src/workspaces/project/packages/a/types/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../tslibs/ts/lib/lib.esnext.full.d.ts","../index.js","../test/index.js"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-15642581130-export const a = 'a';","signature":"-13259723213-export const a: \"a\";\n","impliedFormat":99},{"version":"-3920874422-import 'a';","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[2,3],"options":{"checkJs":true,"composite":true,"declaration":true,"emitDeclarationOnly":true,"module":199,"outDir":"./"},"referencedMap":[[3,1]],"latestChangedDtsFile":"./test/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../tslibs/ts/lib/lib.esnext.full.d.ts","../index.js","../test/index.js"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-15642581130-export const a = 'a';","signature":"-13259723213-export const a: \"a\";\n","impliedFormat":99},{"version":"-3920874422-import 'a';","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[2,3],"options":{"checkJs":true,"composite":true,"declaration":true,"emitDeclarationOnly":true,"module":199,"outDir":"./"},"referencedMap":[[3,1]],"latestChangedDtsFile":"./test/index.d.ts","packageJsons":["../package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/packages/a/types/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -202,8 +202,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./test/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1070
|
||||
"size": 1105
|
||||
}
|
||||
|
||||
|
||||
@@ -263,15 +266,19 @@ packages/b/index.js
|
||||
|
||||
|
||||
//// [/home/src/workspaces/project/packages/b/tsconfig.tsbuildinfo]
|
||||
{"root":["./index.js"],"version":"FakeTSVersion"}
|
||||
{"root":["./index.js"],"packageJsons":["../a/package.json","./package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/packages/b/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"./index.js"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../a/package.json",
|
||||
"./package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 49
|
||||
"size": 103
|
||||
}
|
||||
|
||||
|
||||
|
||||
+11
-4
@@ -152,7 +152,7 @@ export * from './dogconfig.js';
|
||||
|
||||
|
||||
//// [/home/src/workspaces/packages/src-types/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../tslibs/ts/lib/lib.es2022.full.d.ts","./dogconfig.ts","./index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5575793279-export interface DogConfig {\n name: string;\n}","signature":"-3612551765-export interface DogConfig {\n name: string;\n}\n","impliedFormat":99},{"version":"-6189272282-export * from './dogconfig.js';","signature":"-6677489680-export * from './dogconfig.js';\n","impliedFormat":99}],"root":[2,3],"options":{"composite":true,"declaration":true,"module":100},"referencedMap":[[3,1]],"latestChangedDtsFile":"./index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../tslibs/ts/lib/lib.es2022.full.d.ts","./dogconfig.ts","./index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5575793279-export interface DogConfig {\n name: string;\n}","signature":"-3612551765-export interface DogConfig {\n name: string;\n}\n","impliedFormat":99},{"version":"-6189272282-export * from './dogconfig.js';","signature":"-6677489680-export * from './dogconfig.js';\n","impliedFormat":99}],"root":[2,3],"options":{"composite":true,"declaration":true,"module":100},"referencedMap":[[3,1]],"latestChangedDtsFile":"./index.d.ts","packageJsons":["./package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/packages/src-types/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -220,8 +220,11 @@ export * from './dogconfig.js';
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./index.d.ts",
|
||||
"packageJsons": [
|
||||
"./package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1096
|
||||
"size": 1130
|
||||
}
|
||||
|
||||
//// [/home/src/workspaces/packages/src-dogs/dogconfig.js]
|
||||
@@ -286,7 +289,7 @@ export * from './lassie/lassiedog.js';
|
||||
|
||||
|
||||
//// [/home/src/workspaces/packages/src-dogs/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../tslibs/ts/lib/lib.es2022.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"],"fileIdsList":[[3,4],[3],[3,7],[5,6],[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-3612551765-export interface DogConfig {\n name: string;\n}\n","impliedFormat":99},{"version":"-6677489680-export * from './dogconfig.js';\n","impliedFormat":99},{"version":"1966273863-import { DogConfig } from 'src-types';\n\nexport const DOG_CONFIG: DogConfig = {\n name: 'Default dog',\n};\n","signature":"15679103984-import { DogConfig } from 'src-types';\nexport declare const DOG_CONFIG: DogConfig;\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","signature":"26984075437-import { DogConfig } from 'src-types';\nexport declare abstract class Dog {\n static getCapabilities(): DogConfig;\n}\n","impliedFormat":99},{"version":"4440579024-import { DogConfig } from 'src-types';\n\nexport const LASSIE_CONFIG: DogConfig = { name: 'Lassie' };\n","signature":"17379560247-import { DogConfig } from 'src-types';\nexport declare const LASSIE_CONFIG: DogConfig;\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","signature":"-10239718190-import { Dog } from '../dog.js';\nexport declare class LassieDog extends Dog {\n protected static getDogConfig: () => import(\"src-types\").DogConfig;\n}\n","impliedFormat":99},{"version":"-15974991320-export * from 'src-types';\nexport * from './lassie/lassiedog.js';\n","impliedFormat":99}],"root":[[4,8]],"options":{"composite":true,"declaration":true,"module":100},"referencedMap":[[5,1],[4,2],[8,3],[6,2],[7,4],[3,5]],"latestChangedDtsFile":"./index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../tslibs/ts/lib/lib.es2022.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"],"fileIdsList":[[3,4],[3],[3,7],[5,6],[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-3612551765-export interface DogConfig {\n name: string;\n}\n","impliedFormat":99},{"version":"-6677489680-export * from './dogconfig.js';\n","impliedFormat":99},{"version":"1966273863-import { DogConfig } from 'src-types';\n\nexport const DOG_CONFIG: DogConfig = {\n name: 'Default dog',\n};\n","signature":"15679103984-import { DogConfig } from 'src-types';\nexport declare const DOG_CONFIG: DogConfig;\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","signature":"26984075437-import { DogConfig } from 'src-types';\nexport declare abstract class Dog {\n static getCapabilities(): DogConfig;\n}\n","impliedFormat":99},{"version":"4440579024-import { DogConfig } from 'src-types';\n\nexport const LASSIE_CONFIG: DogConfig = { name: 'Lassie' };\n","signature":"17379560247-import { DogConfig } from 'src-types';\nexport declare const LASSIE_CONFIG: DogConfig;\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","signature":"-10239718190-import { Dog } from '../dog.js';\nexport declare class LassieDog extends Dog {\n protected static getDogConfig: () => import(\"src-types\").DogConfig;\n}\n","impliedFormat":99},{"version":"-15974991320-export * from 'src-types';\nexport * from './lassie/lassiedog.js';\n","impliedFormat":99}],"root":[[4,8]],"options":{"composite":true,"declaration":true,"module":100},"referencedMap":[[5,1],[4,2],[8,3],[6,2],[7,4],[3,5]],"latestChangedDtsFile":"./index.d.ts","packageJsons":["./package.json","../src-types/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/packages/src-dogs/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -444,8 +447,12 @@ export * from './lassie/lassiedog.js';
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./index.d.ts",
|
||||
"packageJsons": [
|
||||
"./package.json",
|
||||
"../src-types/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 2601
|
||||
"size": 2663
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -664,10 +664,6 @@ export declare function createZoo(): Array<Dog>;
|
||||
}
|
||||
|
||||
|
||||
PolledWatches::
|
||||
/user/username/projects/demo/animals/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/demo/animals/animal.ts: *new*
|
||||
{}
|
||||
|
||||
@@ -161,13 +161,6 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/src 1 {"exclu
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/myproject/src 1 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Wild card directory /home/src/projects/myproject/tsconfig.json
|
||||
ExcludeWatcher:: Added:: WatchInfo: /home/src/projects/myproject/main.ts 250 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Source file /home/src/projects/myproject/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/projects/myproject/src/secondary.ts 250 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} Source file /home/src/projects/myproject/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/projects/myproject/src/package.json 2000 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} package.json file /home/src/projects/myproject/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/projects/myproject/package.json 2000 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} package.json file /home/src/projects/myproject/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/projects/package.json 2000 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} package.json file /home/src/projects/myproject/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/package.json 2000 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} package.json file /home/src/projects/myproject/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/package.json 2000 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} package.json file /home/src/projects/myproject/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /package.json 2000 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} package.json file /home/src/projects/myproject/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/projects/myproject/root2/other/sometype2/package.json 2000 {"excludeFiles":["/home/src/projects/myproject/main.ts"]} package.json file /home/src/projects/myproject/tsconfig.json
|
||||
|
||||
|
||||
//// [/home/src/projects/myproject/outDir/types/sometype.js]
|
||||
@@ -219,22 +212,6 @@ export declare const z = 10;
|
||||
}
|
||||
|
||||
|
||||
PolledWatches::
|
||||
/home/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/projects/myproject/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/projects/myproject/root2/other/sometype2/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/projects/myproject/src/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/projects/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
|
||||
FsWatches::
|
||||
/home/src/projects/configs/first/tsconfig.json: *new*
|
||||
{}
|
||||
|
||||
-41
@@ -465,18 +465,6 @@ FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project1/file2.ts
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project1/index.ts 250 undefined Source file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project1/utils.d.ts 250 undefined Source file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project1/typeroot1/sometype/index.d.ts 250 undefined Source file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-webworker/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-scripthost/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-es5/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project1/typeroot1/sometype/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-dom/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project2/tsconfig.json 2000 undefined Config file /home/src/workspace/projects/project2/tsconfig.json
|
||||
DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project2 1 undefined Wild card directory /home/src/workspace/projects/project2/tsconfig.json
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project2 1 undefined Wild card directory /home/src/workspace/projects/project2/tsconfig.json
|
||||
@@ -492,7 +480,6 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project4 1 un
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project4 1 undefined Wild card directory /home/src/workspace/projects/project4/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project4/index.ts 250 undefined Source file /home/src/workspace/projects/project4/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project4/utils.d.ts 250 undefined Source file /home/src/workspace/projects/project4/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-esnext/package.json 2000 undefined package.json file /home/src/workspace/projects/project4/tsconfig.json
|
||||
|
||||
|
||||
//// [/home/src/workspace/projects/project1/file.js]
|
||||
@@ -890,34 +877,6 @@ export declare const z = 10;
|
||||
}
|
||||
|
||||
|
||||
PolledWatches::
|
||||
/home/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/@typescript/lib-dom/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/@typescript/lib-es5/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/@typescript/lib-esnext/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/@typescript/lib-scripthost/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/@typescript/lib-webworker/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/@typescript/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/project1/typeroot1/sometype/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
|
||||
FsWatches::
|
||||
/home/src/workspace/projects/project1/core.d.ts: *new*
|
||||
{}
|
||||
|
||||
@@ -404,11 +404,6 @@ FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project1/file2.ts
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project1/index.ts 250 undefined Source file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project1/utils.d.ts 250 undefined Source file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project1/typeroot1/sometype/index.d.ts 250 undefined Source file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-webworker/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-scripthost/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-es5/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project1/typeroot1/sometype/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-dom/package.json 2000 undefined package.json file /home/src/workspace/projects/project1/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project2/tsconfig.json 2000 undefined Config file /home/src/workspace/projects/project2/tsconfig.json
|
||||
DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project2 1 undefined Wild card directory /home/src/workspace/projects/project2/tsconfig.json
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project2 1 undefined Wild card directory /home/src/workspace/projects/project2/tsconfig.json
|
||||
@@ -424,7 +419,6 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project4 1 un
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project4 1 undefined Wild card directory /home/src/workspace/projects/project4/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project4/index.ts 250 undefined Source file /home/src/workspace/projects/project4/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/project4/utils.d.ts 250 undefined Source file /home/src/workspace/projects/project4/tsconfig.json
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/workspace/projects/node_modules/@typescript/lib-esnext/package.json 2000 undefined package.json file /home/src/workspace/projects/project4/tsconfig.json
|
||||
|
||||
|
||||
//// [/home/src/tslibs/TS/Lib/lib.es5.d.ts] *Lib*
|
||||
@@ -804,20 +798,6 @@ export declare const z = 10;
|
||||
}
|
||||
|
||||
|
||||
PolledWatches::
|
||||
/home/src/workspace/projects/node_modules/@typescript/lib-dom/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/@typescript/lib-es5/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/@typescript/lib-esnext/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/@typescript/lib-scripthost/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/node_modules/@typescript/lib-webworker/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/workspace/projects/project1/typeroot1/sometype/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
|
||||
FsWatches::
|
||||
/home/src/workspace/projects/project1/core.d.ts: *new*
|
||||
{}
|
||||
|
||||
+18
-6
@@ -240,15 +240,19 @@ exports.theNum = 42;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo]
|
||||
{"root":["../index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../index.ts"],"packageJsons":["../package.json","../../pkg2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"../index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../pkg2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 50
|
||||
"size": 111
|
||||
}
|
||||
|
||||
|
||||
@@ -401,7 +405,7 @@ Resolving real path for '/user/username/projects/myproject/node_modules/pkg2/bui
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/index.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo]
|
||||
{"root":["../index.ts"],"errors":true,"version":"FakeTSVersion"}
|
||||
{"root":["../index.ts"],"errors":true,"packageJsons":["../package.json","../../pkg2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -409,8 +413,12 @@ Resolving real path for '/user/username/projects/myproject/node_modules/pkg2/bui
|
||||
"../index.ts"
|
||||
],
|
||||
"errors": true,
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../pkg2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 64
|
||||
"size": 125
|
||||
}
|
||||
|
||||
|
||||
@@ -507,15 +515,19 @@ File '/user/username/projects/myproject/packages/pkg2/build/const.d.ts' exists -
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/index.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo]
|
||||
{"root":["../index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../index.ts"],"packageJsons":["../package.json","../../pkg2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"../index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../pkg2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 50
|
||||
"size": 111
|
||||
}
|
||||
|
||||
|
||||
|
||||
+35
-44
@@ -159,7 +159,7 @@ export type { TheNum } from './const.cjs';
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg2/build/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../../home/src/tslibs/ts/lib/lib.es2022.full.d.ts","../const.cts","../index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-11202312776-export type TheNum = 42;","signature":"-13194036030-export type TheNum = 42;\n","impliedFormat":1},{"version":"-9668872159-export type { TheNum } from './const.cjs';","signature":"-9835135925-export type { TheNum } from './const.cjs';\n","impliedFormat":99}],"root":[2,3],"options":{"composite":true,"module":100,"outDir":"./"},"referencedMap":[[3,1]],"latestChangedDtsFile":"./index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../../home/src/tslibs/ts/lib/lib.es2022.full.d.ts","../const.cts","../index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-11202312776-export type TheNum = 42;","signature":"-13194036030-export type TheNum = 42;\n","impliedFormat":1},{"version":"-9668872159-export type { TheNum } from './const.cjs';","signature":"-9835135925-export type { TheNum } from './const.cjs';\n","impliedFormat":99}],"root":[2,3],"options":{"composite":true,"module":100,"outDir":"./"},"referencedMap":[[3,1]],"latestChangedDtsFile":"./index.d.ts","packageJsons":["../package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg2/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -227,8 +227,11 @@ export type { TheNum } from './const.cjs';
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./index.d.ts",
|
||||
"packageJsons": [
|
||||
"../package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1082
|
||||
"size": 1117
|
||||
}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/index.js]
|
||||
@@ -236,34 +239,22 @@ export const theNum = 42;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo]
|
||||
{"root":["../index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../index.ts"],"packageJsons":["../package.json","../../pkg2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"../index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../pkg2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 50
|
||||
"size": 111
|
||||
}
|
||||
|
||||
|
||||
PolledWatches::
|
||||
/home/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/tslibs/TS/Lib/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/tslibs/TS/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/home/src/tslibs/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/myproject/packages/pkg2/build/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject/packages/pkg1/index.ts: *new*
|
||||
{}
|
||||
@@ -434,7 +425,7 @@ exports.theNum = 42;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo]
|
||||
{"root":["../index.ts"],"errors":true,"version":"FakeTSVersion"}
|
||||
{"root":["../index.ts"],"errors":true,"packageJsons":["../package.json","../../pkg2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -442,8 +433,12 @@ exports.theNum = 42;
|
||||
"../index.ts"
|
||||
],
|
||||
"errors": true,
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../pkg2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 64
|
||||
"size": 125
|
||||
}
|
||||
|
||||
|
||||
@@ -549,15 +544,19 @@ export const theNum = 42;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo]
|
||||
{"root":["../index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../index.ts"],"packageJsons":["../package.json","../../pkg2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"../index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../pkg2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 50
|
||||
"size": 111
|
||||
}
|
||||
|
||||
|
||||
@@ -675,7 +674,7 @@ exports.theNum = 42;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo]
|
||||
{"root":["../index.ts"],"errors":true,"version":"FakeTSVersion"}
|
||||
{"root":["../index.ts"],"errors":true,"packageJsons":["../package.json","../../pkg2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -683,8 +682,12 @@ exports.theNum = 42;
|
||||
"../index.ts"
|
||||
],
|
||||
"errors": true,
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../pkg2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 64
|
||||
"size": 125
|
||||
}
|
||||
|
||||
|
||||
@@ -845,22 +848,6 @@ export type { TheNum } from './const.cjs';
|
||||
|
||||
|
||||
|
||||
PolledWatches::
|
||||
/home/package.json:
|
||||
{"pollingInterval":2000}
|
||||
/home/src/package.json:
|
||||
{"pollingInterval":2000}
|
||||
/home/src/tslibs/TS/Lib/package.json:
|
||||
{"pollingInterval":2000}
|
||||
/home/src/tslibs/TS/package.json:
|
||||
{"pollingInterval":2000}
|
||||
/home/src/tslibs/package.json:
|
||||
{"pollingInterval":2000}
|
||||
/package.json:
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/myproject/packages/pkg2/build/package.json:
|
||||
{"pollingInterval":2000}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject/packages/pkg1/index.ts:
|
||||
{}
|
||||
@@ -944,15 +931,19 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/index.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo]
|
||||
{"root":["../index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../index.ts"],"packageJsons":["../package.json","../../pkg2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/pkg1/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"root": [
|
||||
"../index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../pkg2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 50
|
||||
"size": 111
|
||||
}
|
||||
|
||||
|
||||
|
||||
-26
@@ -265,32 +265,6 @@ export {};
|
||||
}
|
||||
|
||||
|
||||
PolledWatches::
|
||||
/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/myproject/node_modules/@types/bar/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/myproject/node_modules/@types/foo/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/myproject/node_modules/@types/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/myproject/node_modules/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/myproject/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/myproject/project1/node_modules/file/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/myproject/project1/node_modules/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/myproject/project1/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
/user/username/projects/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/myproject/project1/index.ts: *new*
|
||||
{}
|
||||
|
||||
@@ -219,10 +219,6 @@ exports.session = {
|
||||
}
|
||||
|
||||
|
||||
PolledWatches::
|
||||
/user/username/projects/reexport/src/pure/package.json: *new*
|
||||
{"pollingInterval":2000}
|
||||
|
||||
FsWatches::
|
||||
/user/username/projects/reexport/src/main/index.ts: *new*
|
||||
{}
|
||||
|
||||
+5
-2
@@ -69,7 +69,7 @@ export default _default;
|
||||
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.es2022.full.d.ts","./node_modules/solid-js/jsx-runtime.d.ts","./src/main.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-3511680495-export namespace JSX {\n type IntrinsicElements = { div: {}; };\n}\n","impliedFormat":99},{"version":"-359851309-export default <div/>;","signature":"2119670487-declare const _default: any;\nexport default _default;\n","impliedFormat":1}],"root":[3],"options":{"composite":true,"jsx":4,"jsxImportSource":"solid-js","module":100},"referencedMap":[[3,1]],"semanticDiagnosticsPerFile":[[3,[{"start":15,"length":6,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"solid-js/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./src/main.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.es2022.full.d.ts","./node_modules/solid-js/jsx-runtime.d.ts","./src/main.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-3511680495-export namespace JSX {\n type IntrinsicElements = { div: {}; };\n}\n","impliedFormat":99},{"version":"-359851309-export default <div/>;","signature":"2119670487-declare const _default: any;\nexport default _default;\n","impliedFormat":1}],"root":[3],"options":{"composite":true,"jsx":4,"jsxImportSource":"solid-js","module":100},"referencedMap":[[3,1]],"semanticDiagnosticsPerFile":[[3,[{"start":15,"length":6,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"solid-js/jsx-runtime\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./src/main.d.ts","packageJsons":["./node_modules/solid-js/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -156,8 +156,11 @@ export default _default;
|
||||
]
|
||||
],
|
||||
"latestChangedDtsFile": "./src/main.d.ts",
|
||||
"packageJsons": [
|
||||
"./node_modules/solid-js/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1511
|
||||
"size": 1567
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -59,7 +59,7 @@ export default _default;
|
||||
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.es2022.full.d.ts","./node_modules/solid-js/jsx-runtime.d.ts","./src/main.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-3511680495-export namespace JSX {\n type IntrinsicElements = { div: {}; };\n}\n","impliedFormat":99},{"version":"-1874019635-export default 42;","signature":"-5660511115-declare const _default: 42;\nexport default _default;\n","impliedFormat":1}],"root":[3],"options":{"composite":true,"jsx":4,"jsxImportSource":"solid-js","module":100},"referencedMap":[[3,1]],"latestChangedDtsFile":"./src/main.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.es2022.full.d.ts","./node_modules/solid-js/jsx-runtime.d.ts","./src/main.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-3511680495-export namespace JSX {\n type IntrinsicElements = { div: {}; };\n}\n","impliedFormat":99},{"version":"-1874019635-export default 42;","signature":"-5660511115-declare const _default: 42;\nexport default _default;\n","impliedFormat":1}],"root":[3],"options":{"composite":true,"jsx":4,"jsxImportSource":"solid-js","module":100},"referencedMap":[[3,1]],"latestChangedDtsFile":"./src/main.d.ts","packageJsons":["./node_modules/solid-js/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -123,8 +123,11 @@ export default _default;
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./src/main.d.ts",
|
||||
"packageJsons": [
|
||||
"./node_modules/solid-js/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1091
|
||||
"size": 1147
|
||||
}
|
||||
|
||||
|
||||
|
||||
+6
-2
@@ -83,7 +83,7 @@ export const api = ky.extend({});
|
||||
|
||||
|
||||
//// [/home/src/workspaces/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.esnext.full.d.ts","./node_modules/ky/distribution/index.d.ts","./index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"10101889135-type KyInstance = {\n extend(options: Record<string,unknown>): KyInstance;\n}\ndeclare const ky: KyInstance;\nexport default ky;\n","impliedFormat":99},{"version":"-383421929-import ky from 'ky';\nexport const api = ky.extend({});\n","impliedFormat":99}],"root":[3],"options":{"composite":true,"module":199,"skipDefaultLibCheck":true,"skipLibCheck":true},"referencedMap":[[3,1]],"emitDiagnosticsPerFile":[[3,[{"start":34,"length":3,"messageText":"Exported variable 'api' has or is using name 'KyInstance' from external module \"/home/src/workspaces/project/node_modules/ky/distribution/index\" but cannot be named.","category":1,"code":4023}]]],"emitSignatures":[3],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.esnext.full.d.ts","./node_modules/ky/distribution/index.d.ts","./index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"10101889135-type KyInstance = {\n extend(options: Record<string,unknown>): KyInstance;\n}\ndeclare const ky: KyInstance;\nexport default ky;\n","impliedFormat":99},{"version":"-383421929-import ky from 'ky';\nexport const api = ky.extend({});\n","impliedFormat":99}],"root":[3],"options":{"composite":true,"module":199,"skipDefaultLibCheck":true,"skipLibCheck":true},"referencedMap":[[3,1]],"emitDiagnosticsPerFile":[[3,[{"start":34,"length":3,"messageText":"Exported variable 'api' has or is using name 'KyInstance' from external module \"/home/src/workspaces/project/node_modules/ky/distribution/index\" but cannot be named.","category":1,"code":4023}]]],"emitSignatures":[3],"packageJsons":["./node_modules/ky/package.json","./package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -162,8 +162,12 @@ export const api = ky.extend({});
|
||||
"emitSignatures": [
|
||||
"./index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/ky/package.json",
|
||||
"./package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1364
|
||||
"size": 1431
|
||||
}
|
||||
|
||||
|
||||
|
||||
+6
-2
@@ -149,7 +149,7 @@ Found 1 error.
|
||||
|
||||
//// [/home/src/workspaces/project/index.js] file written with same contents
|
||||
//// [/home/src/workspaces/project/tsconfig.tsbuildinfo]
|
||||
{"root":["./index.ts"],"errors":true,"version":"FakeTSVersion"}
|
||||
{"root":["./index.ts"],"errors":true,"packageJsons":["./node_modules/ky/package.json","./package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -157,8 +157,12 @@ Found 1 error.
|
||||
"./index.ts"
|
||||
],
|
||||
"errors": true,
|
||||
"packageJsons": [
|
||||
"./node_modules/ky/package.json",
|
||||
"./package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 63
|
||||
"size": 130
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -350,7 +350,7 @@ export {};
|
||||
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","impliedFormat":99}],"root":[4],"options":{"strict":true},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[1,2,3,4],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","impliedFormat":99}],"root":[4],"options":{"strict":true},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[1,2,3,4],"packageJsons":["./node_modules/@types/bar/package.json","./node_modules/@types/bar2/package.json","./node_modules/bar/package.json","./node_modules/bar2/package.json","./node_modules/foo/package.json","./node_modules/foo2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -439,8 +439,16 @@ export {};
|
||||
"not cached or not changed"
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/@types/bar/package.json",
|
||||
"./node_modules/@types/bar2/package.json",
|
||||
"./node_modules/bar/package.json",
|
||||
"./node_modules/bar2/package.json",
|
||||
"./node_modules/foo/package.json",
|
||||
"./node_modules/foo2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1120
|
||||
"size": 1358
|
||||
}
|
||||
|
||||
|
||||
@@ -1579,7 +1587,7 @@ Found 1 error in tsconfig.json[90m:2[0m
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"strict":true},"referencedMap":[[5,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"strict":true},"referencedMap":[[5,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5],"packageJsons":["./node_modules/@types/bar/package.json","./node_modules/@types/bar2/package.json","./node_modules/bar/package.json","./node_modules/bar2/package.json","./node_modules/foo/package.json","./node_modules/foo2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -1685,8 +1693,16 @@ Found 1 error in tsconfig.json[90m:2[0m
|
||||
"not cached or not changed"
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/@types/bar/package.json",
|
||||
"./node_modules/@types/bar2/package.json",
|
||||
"./node_modules/bar/package.json",
|
||||
"./node_modules/bar2/package.json",
|
||||
"./node_modules/foo/package.json",
|
||||
"./node_modules/foo2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1280
|
||||
"size": 1518
|
||||
}
|
||||
|
||||
|
||||
@@ -1860,7 +1876,7 @@ Found 1 error in tsconfig.json[90m:2[0m
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4,5]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[6],"options":{"strict":true},"referencedMap":[[6,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4,5]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[6],"options":{"strict":true},"referencedMap":[[6,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6],"packageJsons":["./node_modules/@types/bar/package.json","./node_modules/@types/bar2/package.json","./node_modules/bar/package.json","./node_modules/bar2/package.json","./node_modules/foo/package.json","./node_modules/foo2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -1982,8 +1998,16 @@ Found 1 error in tsconfig.json[90m:2[0m
|
||||
"not cached or not changed"
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/@types/bar/package.json",
|
||||
"./node_modules/@types/bar2/package.json",
|
||||
"./node_modules/bar/package.json",
|
||||
"./node_modules/bar2/package.json",
|
||||
"./node_modules/foo/package.json",
|
||||
"./node_modules/foo2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1394
|
||||
"size": 1632
|
||||
}
|
||||
|
||||
|
||||
@@ -2196,7 +2220,7 @@ Found 1 error in tsconfig.json[90m:2[0m
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"strict":true},"referencedMap":[[5,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"strict":true},"referencedMap":[[5,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5],"packageJsons":["./node_modules/@types/bar/package.json","./node_modules/@types/bar2/package.json","./node_modules/bar/package.json","./node_modules/bar2/package.json","./node_modules/foo/package.json","./node_modules/foo2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -2302,8 +2326,16 @@ Found 1 error in tsconfig.json[90m:2[0m
|
||||
"not cached or not changed"
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/@types/bar/package.json",
|
||||
"./node_modules/@types/bar2/package.json",
|
||||
"./node_modules/bar/package.json",
|
||||
"./node_modules/bar2/package.json",
|
||||
"./node_modules/foo/package.json",
|
||||
"./node_modules/foo2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1271
|
||||
"size": 1509
|
||||
}
|
||||
|
||||
|
||||
@@ -2544,7 +2576,7 @@ Found 1 error in tsconfig.json[90m:2[0m
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./index.mts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[4],"options":{"strict":true},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[1,2,3,4],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./index.mts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[4],"options":{"strict":true},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[1,2,3,4],"packageJsons":["./node_modules/@types/bar/package.json","./node_modules/@types/bar2/package.json","./node_modules/bar/package.json","./node_modules/bar2/package.json","./node_modules/foo/package.json","./node_modules/foo2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -2634,8 +2666,16 @@ Found 1 error in tsconfig.json[90m:2[0m
|
||||
"not cached or not changed"
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/@types/bar/package.json",
|
||||
"./node_modules/@types/bar2/package.json",
|
||||
"./node_modules/bar/package.json",
|
||||
"./node_modules/bar2/package.json",
|
||||
"./node_modules/foo/package.json",
|
||||
"./node_modules/foo2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1155
|
||||
"size": 1393
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -121,6 +121,176 @@ const fileB_mjs_1 = require("./fileB.mjs");
|
||||
export {};
|
||||
|
||||
|
||||
//// [/home/src/workspaces/project/src/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","./main.ts","./fileb.mts","./filea.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":1}],"root":[[2,4]],"options":{"composite":true,"module":100,"target":3},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[[4,[{"start":20,"length":13,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./fileA.d.ts","packageJsons":["../package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/workspaces/project/src/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"fileNames": [
|
||||
"../../../tslibs/ts/lib/lib.es2016.full.d.ts",
|
||||
"./main.ts",
|
||||
"./fileb.mts",
|
||||
"./filea.ts"
|
||||
],
|
||||
"fileIdsList": [
|
||||
[
|
||||
"./fileb.mts"
|
||||
]
|
||||
],
|
||||
"fileInfos": {
|
||||
"../../../tslibs/ts/lib/lib.es2016.full.d.ts": {
|
||||
"original": {
|
||||
"version": "3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };",
|
||||
"affectsGlobalScope": true,
|
||||
"impliedFormat": 1
|
||||
},
|
||||
"version": "3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };",
|
||||
"signature": "3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };",
|
||||
"affectsGlobalScope": true,
|
||||
"impliedFormat": "commonjs"
|
||||
},
|
||||
"./main.ts": {
|
||||
"original": {
|
||||
"version": "-10726455937-export const x = 10;",
|
||||
"signature": "-6821242887-export declare const x = 10;\n",
|
||||
"impliedFormat": 1
|
||||
},
|
||||
"version": "-10726455937-export const x = 10;",
|
||||
"signature": "-6821242887-export declare const x = 10;\n",
|
||||
"impliedFormat": "commonjs"
|
||||
},
|
||||
"./fileb.mts": {
|
||||
"original": {
|
||||
"version": "3524703962-export function foo() {}",
|
||||
"signature": "-5677608893-export declare function foo(): void;\n",
|
||||
"impliedFormat": 99
|
||||
},
|
||||
"version": "3524703962-export function foo() {}",
|
||||
"signature": "-5677608893-export declare function foo(): void;\n",
|
||||
"impliedFormat": "esnext"
|
||||
},
|
||||
"./filea.ts": {
|
||||
"original": {
|
||||
"version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n",
|
||||
"signature": "-3531856636-export {};\n",
|
||||
"impliedFormat": 1
|
||||
},
|
||||
"version": "-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n",
|
||||
"signature": "-3531856636-export {};\n",
|
||||
"impliedFormat": "commonjs"
|
||||
}
|
||||
},
|
||||
"root": [
|
||||
[
|
||||
[
|
||||
2,
|
||||
4
|
||||
],
|
||||
[
|
||||
"./main.ts",
|
||||
"./fileb.mts",
|
||||
"./filea.ts"
|
||||
]
|
||||
]
|
||||
],
|
||||
"options": {
|
||||
"composite": true,
|
||||
"module": 100,
|
||||
"target": 3
|
||||
},
|
||||
"referencedMap": {
|
||||
"./filea.ts": [
|
||||
"./fileb.mts"
|
||||
]
|
||||
},
|
||||
"semanticDiagnosticsPerFile": [
|
||||
[
|
||||
"./filea.ts",
|
||||
[
|
||||
{
|
||||
"start": 20,
|
||||
"length": 13,
|
||||
"code": 1479,
|
||||
"category": 1,
|
||||
"messageText": {
|
||||
"messageText": "The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.",
|
||||
"category": 1,
|
||||
"code": 1479,
|
||||
"next": [
|
||||
{
|
||||
"info": true
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
]
|
||||
]
|
||||
],
|
||||
"latestChangedDtsFile": "./fileA.d.ts",
|
||||
"packageJsons": [
|
||||
"../package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1617
|
||||
}
|
||||
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated
|
||||
|
||||
Change:: Delete package.json
|
||||
|
||||
Input::
|
||||
//// [/home/src/workspaces/project/package.json] deleted
|
||||
|
||||
/home/src/tslibs/TS/Lib/tsc.js -p src --explainFiles --extendedDiagnostics
|
||||
Output::
|
||||
File '/home/src/workspaces/project/src/package.json' does not exist.
|
||||
File '/home/src/workspaces/project/package.json' does not exist.
|
||||
File '/home/src/workspaces/package.json' does not exist.
|
||||
File '/home/src/package.json' does not exist.
|
||||
File '/home/package.json' does not exist.
|
||||
File '/package.json' does not exist.
|
||||
File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups.
|
||||
File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups.
|
||||
File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups.
|
||||
File '/home/src/package.json' does not exist according to earlier cached lookups.
|
||||
File '/home/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ========
|
||||
Module resolution kind is not specified, using 'Node16'.
|
||||
Resolving in CJS mode with conditions 'require', 'types', 'node'.
|
||||
Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration.
|
||||
File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it.
|
||||
File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result.
|
||||
======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ========
|
||||
File '/home/src/tslibs/TS/Lib/package.json' does not exist.
|
||||
File '/home/src/tslibs/TS/package.json' does not exist.
|
||||
File '/home/src/tslibs/package.json' does not exist.
|
||||
File '/home/src/package.json' does not exist according to earlier cached lookups.
|
||||
File '/home/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
[96msrc/fileA.ts[0m:[93m1[0m:[93m21[0m - [91merror[0m[90m TS1479: [0mThe current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead.
|
||||
To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ "type": "module" }`.
|
||||
|
||||
[7m1[0m import { foo } from "./fileB.mjs";
|
||||
[7m [0m [91m ~~~~~~~~~~~~~[0m
|
||||
|
||||
../../tslibs/TS/Lib/lib.es2016.full.d.ts
|
||||
Default library for target 'es2016'
|
||||
src/main.ts
|
||||
Part of 'files' list in tsconfig.json
|
||||
File is CommonJS module because 'package.json' was not found
|
||||
src/fileB.mts
|
||||
Imported via "./fileB.mjs" from file 'src/fileA.ts'
|
||||
Part of 'files' list in tsconfig.json
|
||||
src/fileA.ts
|
||||
Part of 'files' list in tsconfig.json
|
||||
File is CommonJS module because 'package.json' was not found
|
||||
|
||||
Found 1 error in src/fileA.ts[90m:1[0m
|
||||
|
||||
|
||||
|
||||
//// [/home/src/workspaces/project/src/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../tslibs/ts/lib/lib.es2016.full.d.ts","./main.ts","./fileb.mts","./filea.ts"],"fileIdsList":[[3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-10726455937-export const x = 10;","signature":"-6821242887-export declare const x = 10;\n","impliedFormat":1},{"version":"3524703962-export function foo() {}","signature":"-5677608893-export declare function foo(): void;\n","impliedFormat":99},{"version":"-5325347830-import { foo } from \"./fileB.mjs\";\nfoo();\n","signature":"-3531856636-export {};\n","impliedFormat":1}],"root":[[2,4]],"options":{"composite":true,"module":100,"target":3},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[[4,[{"start":20,"length":13,"code":1479,"category":1,"messageText":{"messageText":"The current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import(\"./fileB.mjs\")' call instead.","category":1,"code":1479,"next":[{"info":true}]}}]]],"latestChangedDtsFile":"./fileA.d.ts","version":"FakeTSVersion"}
|
||||
|
||||
@@ -232,61 +402,4 @@ export {};
|
||||
}
|
||||
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated
|
||||
|
||||
Change:: Delete package.json
|
||||
|
||||
Input::
|
||||
//// [/home/src/workspaces/project/package.json] deleted
|
||||
|
||||
/home/src/tslibs/TS/Lib/tsc.js -p src --explainFiles --extendedDiagnostics
|
||||
Output::
|
||||
File '/home/src/workspaces/project/src/package.json' does not exist.
|
||||
File '/home/src/workspaces/project/package.json' does not exist.
|
||||
File '/home/src/workspaces/package.json' does not exist.
|
||||
File '/home/src/package.json' does not exist.
|
||||
File '/home/package.json' does not exist.
|
||||
File '/package.json' does not exist.
|
||||
File '/home/src/workspaces/project/src/package.json' does not exist according to earlier cached lookups.
|
||||
File '/home/src/workspaces/project/package.json' does not exist according to earlier cached lookups.
|
||||
File '/home/src/workspaces/package.json' does not exist according to earlier cached lookups.
|
||||
File '/home/src/package.json' does not exist according to earlier cached lookups.
|
||||
File '/home/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
======== Resolving module './fileB.mjs' from '/home/src/workspaces/project/src/fileA.ts'. ========
|
||||
Module resolution kind is not specified, using 'Node16'.
|
||||
Resolving in CJS mode with conditions 'require', 'types', 'node'.
|
||||
Loading module as file / folder, candidate module location '/home/src/workspaces/project/src/fileB.mjs', target file types: TypeScript, JavaScript, Declaration.
|
||||
File name '/home/src/workspaces/project/src/fileB.mjs' has a '.mjs' extension - stripping it.
|
||||
File '/home/src/workspaces/project/src/fileB.mts' exists - use it as a name resolution result.
|
||||
======== Module name './fileB.mjs' was successfully resolved to '/home/src/workspaces/project/src/fileB.mts'. ========
|
||||
File '/home/src/tslibs/TS/Lib/package.json' does not exist.
|
||||
File '/home/src/tslibs/TS/package.json' does not exist.
|
||||
File '/home/src/tslibs/package.json' does not exist.
|
||||
File '/home/src/package.json' does not exist according to earlier cached lookups.
|
||||
File '/home/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
[96msrc/fileA.ts[0m:[93m1[0m:[93m21[0m - [91merror[0m[90m TS1479: [0mThe current file is a CommonJS module whose imports will produce 'require' calls; however, the referenced file is an ECMAScript module and cannot be imported with 'require'. Consider writing a dynamic 'import("./fileB.mjs")' call instead.
|
||||
To convert this file to an ECMAScript module, change its file extension to '.mts' or create a local package.json file with `{ "type": "module" }`.
|
||||
|
||||
[7m1[0m import { foo } from "./fileB.mjs";
|
||||
[7m [0m [91m ~~~~~~~~~~~~~[0m
|
||||
|
||||
../../tslibs/TS/Lib/lib.es2016.full.d.ts
|
||||
Default library for target 'es2016'
|
||||
src/main.ts
|
||||
Part of 'files' list in tsconfig.json
|
||||
File is CommonJS module because 'package.json' was not found
|
||||
src/fileB.mts
|
||||
Imported via "./fileB.mjs" from file 'src/fileA.ts'
|
||||
Part of 'files' list in tsconfig.json
|
||||
src/fileA.ts
|
||||
Part of 'files' list in tsconfig.json
|
||||
File is CommonJS module because 'package.json' was not found
|
||||
|
||||
Found 1 error in src/fileA.ts[90m:1[0m
|
||||
|
||||
|
||||
|
||||
|
||||
exitCode:: ExitStatus.DiagnosticsPresent_OutputsGenerated
|
||||
|
||||
+5
-2
@@ -85,7 +85,7 @@ export declare function thing(): void;
|
||||
|
||||
|
||||
//// [/Users/name/projects/web/dist/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../home/src/tslibs/ts/lib/lib.esnext.full.d.ts","../index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"14361483761-import * as me from \"@this/package\";\nme.thing();\nexport function thing(): void {}\n","signature":"-2724770439-export declare function thing(): void;\n","impliedFormat":99}],"root":[2],"options":{"composite":true,"declarationDir":"../types","module":199,"outDir":"./"},"referencedMap":[[2,1]],"latestChangedDtsFile":"../types/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../home/src/tslibs/ts/lib/lib.esnext.full.d.ts","../index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"14361483761-import * as me from \"@this/package\";\nme.thing();\nexport function thing(): void {}\n","signature":"-2724770439-export declare function thing(): void;\n","impliedFormat":99}],"root":[2],"options":{"composite":true,"declarationDir":"../types","module":199,"outDir":"./"},"referencedMap":[[2,1]],"latestChangedDtsFile":"../types/index.d.ts","packageJsons":["../package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/Users/name/projects/web/dist/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -139,8 +139,11 @@ export declare function thing(): void;
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "../types/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1011
|
||||
"size": 1046
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -48,7 +48,7 @@ exports.x = tslib_1.__assign({});
|
||||
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/tslib/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"1620578607-export function __assign(...args: any[]): any;","impliedFormat":1},"-14168389096-export const x = {...{}};"],"root":[3],"options":{"importHelpers":true},"referencedMap":[[3,1]],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/tslib/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"1620578607-export function __assign(...args: any[]): any;","impliedFormat":1},"-14168389096-export const x = {...{}};"],"root":[3],"options":{"importHelpers":true},"referencedMap":[[3,1]],"packageJsons":["./node_modules/tslib/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -100,8 +100,11 @@ exports.x = tslib_1.__assign({});
|
||||
"./node_modules/tslib/index.d.ts"
|
||||
]
|
||||
},
|
||||
"packageJsons": [
|
||||
"./node_modules/tslib/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 847
|
||||
"size": 900
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -158,7 +158,7 @@ Output::
|
||||
|
||||
//// [/users/username/projects/project/index.js] file written with same contents
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},{"version":"-14760199789-export const App = () => <div propA={true}></div>;","signature":"-17269688391-export declare const App: () => import(\"react/jsx-runtime\").JSX.Element;\n"}],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},{"version":"-14760199789-export const App = () => <div propA={true}></div>;","signature":"-17269688391-export declare const App: () => import(\"react/jsx-runtime\").JSX.Element;\n"}],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"packageJsons":["./node_modules/react/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -216,8 +216,11 @@ Output::
|
||||
"./node_modules/react/jsx-runtime/index.d.ts"
|
||||
]
|
||||
},
|
||||
"packageJsons": [
|
||||
"./node_modules/react/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1261
|
||||
"size": 1314
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -224,7 +224,7 @@ Output::
|
||||
|
||||
//// [/users/username/projects/project/index.js] file written with same contents
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},{"version":"-14760199789-export const App = () => <div propA={true}></div>;","signature":"-17269688391-export declare const App: () => import(\"react/jsx-runtime\").JSX.Element;\n"}],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},{"version":"-14760199789-export const App = () => <div propA={true}></div>;","signature":"-17269688391-export declare const App: () => import(\"react/jsx-runtime\").JSX.Element;\n"}],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"packageJsons":["./node_modules/react/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -282,8 +282,11 @@ Output::
|
||||
"./node_modules/react/jsx-runtime/index.d.ts"
|
||||
]
|
||||
},
|
||||
"packageJsons": [
|
||||
"./node_modules/react/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1261
|
||||
"size": 1314
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -63,7 +63,7 @@ exports.App = App;
|
||||
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},"-14760199789-export const App = () => <div propA={true}></div>;"],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},"-14760199789-export const App = () => <div propA={true}></div>;"],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"packageJsons":["./node_modules/react/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -117,8 +117,11 @@ exports.App = App;
|
||||
"./node_modules/react/jsx-runtime/index.d.ts"
|
||||
]
|
||||
},
|
||||
"packageJsons": [
|
||||
"./node_modules/react/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1145
|
||||
"size": 1198
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -68,7 +68,7 @@ exports.App = App;
|
||||
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},"-14760199789-export const App = () => <div propA={true}></div>;"],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},"-14760199789-export const App = () => <div propA={true}></div>;"],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"packageJsons":["./node_modules/react/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -122,8 +122,11 @@ exports.App = App;
|
||||
"./node_modules/react/jsx-runtime/index.d.ts"
|
||||
]
|
||||
},
|
||||
"packageJsons": [
|
||||
"./node_modules/react/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1145
|
||||
"size": 1198
|
||||
}
|
||||
|
||||
|
||||
|
||||
+10
-4
@@ -89,7 +89,7 @@ exports.App = App;
|
||||
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},"-14760199789-export const App = () => <div propA={true}></div>;"],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},"-14760199789-export const App = () => <div propA={true}></div>;"],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"packageJsons":["./node_modules/react/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -143,8 +143,11 @@ exports.App = App;
|
||||
"./node_modules/react/jsx-runtime/index.d.ts"
|
||||
]
|
||||
},
|
||||
"packageJsons": [
|
||||
"./node_modules/react/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1145
|
||||
"size": 1198
|
||||
}
|
||||
|
||||
|
||||
@@ -219,7 +222,7 @@ exports.App = App;
|
||||
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/preact/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-17896129664-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propB?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},{"version":"-14760199789-export const App = () => <div propA={true}></div>;","signature":"-8162467991-export declare const App: () => import(\"preact/jsx-runtime\").JSX.Element;\n"}],"root":[3],"options":{"jsx":4,"jsxImportSource":"preact","module":1},"referencedMap":[[3,1]],"semanticDiagnosticsPerFile":[[3,[{"start":30,"length":5,"code":2322,"category":1,"messageText":{"messageText":"Type '{ propA: boolean; }' is not assignable to type '{ propB?: boolean; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'propA' does not exist on type '{ propB?: boolean; }'. Did you mean 'propB'?","category":1,"code":2551}]}}]]],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/preact/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-17896129664-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propB?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},{"version":"-14760199789-export const App = () => <div propA={true}></div>;","signature":"-8162467991-export declare const App: () => import(\"preact/jsx-runtime\").JSX.Element;\n"}],"root":[3],"options":{"jsx":4,"jsxImportSource":"preact","module":1},"referencedMap":[[3,1]],"semanticDiagnosticsPerFile":[[3,[{"start":30,"length":5,"code":2322,"category":1,"messageText":{"messageText":"Type '{ propA: boolean; }' is not assignable to type '{ propB?: boolean; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'propA' does not exist on type '{ propB?: boolean; }'. Did you mean 'propB'?","category":1,"code":2551}]}}]]],"packageJsons":["./node_modules/preact/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -302,8 +305,11 @@ exports.App = App;
|
||||
]
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/preact/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1621
|
||||
"size": 1675
|
||||
}
|
||||
|
||||
|
||||
|
||||
+10
-4
@@ -94,7 +94,7 @@ exports.App = App;
|
||||
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},"-14760199789-export const App = () => <div propA={true}></div>;"],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/react/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-35656056833-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propA?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},"-14760199789-export const App = () => <div propA={true}></div>;"],"root":[3],"options":{"jsx":4,"jsxImportSource":"react","module":1},"referencedMap":[[3,1]],"packageJsons":["./node_modules/react/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -148,8 +148,11 @@ exports.App = App;
|
||||
"./node_modules/react/jsx-runtime/index.d.ts"
|
||||
]
|
||||
},
|
||||
"packageJsons": [
|
||||
"./node_modules/react/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1145
|
||||
"size": 1198
|
||||
}
|
||||
|
||||
|
||||
@@ -293,7 +296,7 @@ exports.App = App;
|
||||
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/preact/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-17896129664-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propB?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},{"version":"-14760199789-export const App = () => <div propA={true}></div>;","signature":"-8162467991-export declare const App: () => import(\"preact/jsx-runtime\").JSX.Element;\n"}],"root":[3],"options":{"jsx":4,"jsxImportSource":"preact","module":1},"referencedMap":[[3,1]],"semanticDiagnosticsPerFile":[[3,[{"start":30,"length":5,"code":2322,"category":1,"messageText":{"messageText":"Type '{ propA: boolean; }' is not assignable to type '{ propB?: boolean; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'propA' does not exist on type '{ propB?: boolean; }'. Did you mean 'propB'?","category":1,"code":2551}]}}]]],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../home/src/tslibs/ts/lib/lib.d.ts","./node_modules/preact/jsx-runtime/index.d.ts","./index.tsx"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-17896129664-export namespace JSX {\n interface Element {}\n interface IntrinsicElements {\n div: {\n propB?: boolean;\n };\n }\n}\nexport function jsx(...args: any[]): void;\nexport function jsxs(...args: any[]): void;\nexport const Fragment: unique symbol;\n","impliedFormat":1},{"version":"-14760199789-export const App = () => <div propA={true}></div>;","signature":"-8162467991-export declare const App: () => import(\"preact/jsx-runtime\").JSX.Element;\n"}],"root":[3],"options":{"jsx":4,"jsxImportSource":"preact","module":1},"referencedMap":[[3,1]],"semanticDiagnosticsPerFile":[[3,[{"start":30,"length":5,"code":2322,"category":1,"messageText":{"messageText":"Type '{ propA: boolean; }' is not assignable to type '{ propB?: boolean; }'.","category":1,"code":2322,"next":[{"messageText":"Property 'propA' does not exist on type '{ propB?: boolean; }'. Did you mean 'propB'?","category":1,"code":2551}]}}]]],"packageJsons":["./node_modules/preact/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/users/username/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -376,8 +379,11 @@ exports.App = App;
|
||||
]
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/preact/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1621
|
||||
"size": 1675
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -387,7 +387,7 @@ export {};
|
||||
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","impliedFormat":99}],"root":[4],"options":{"strict":true},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[1,2,3,4],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","impliedFormat":99}],"root":[4],"options":{"strict":true},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[1,2,3,4],"packageJsons":["./node_modules/@types/bar/package.json","./node_modules/@types/bar2/package.json","./node_modules/bar/package.json","./node_modules/bar2/package.json","./node_modules/foo/package.json","./node_modules/foo2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -476,8 +476,16 @@ export {};
|
||||
"not cached or not changed"
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/@types/bar/package.json",
|
||||
"./node_modules/@types/bar2/package.json",
|
||||
"./node_modules/bar/package.json",
|
||||
"./node_modules/bar2/package.json",
|
||||
"./node_modules/foo/package.json",
|
||||
"./node_modules/foo2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1120
|
||||
"size": 1358
|
||||
}
|
||||
|
||||
|
||||
@@ -1317,7 +1325,7 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"strict":true},"referencedMap":[[5,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"strict":true},"referencedMap":[[5,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5],"packageJsons":["./node_modules/@types/bar/package.json","./node_modules/@types/bar2/package.json","./node_modules/bar/package.json","./node_modules/bar2/package.json","./node_modules/foo/package.json","./node_modules/foo2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -1423,8 +1431,16 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
"not cached or not changed"
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/@types/bar/package.json",
|
||||
"./node_modules/@types/bar2/package.json",
|
||||
"./node_modules/bar/package.json",
|
||||
"./node_modules/bar2/package.json",
|
||||
"./node_modules/foo/package.json",
|
||||
"./node_modules/foo2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1280
|
||||
"size": 1518
|
||||
}
|
||||
|
||||
|
||||
@@ -1611,7 +1627,7 @@ Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modu
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4,5]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[6],"options":{"strict":true},"referencedMap":[[6,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4,5]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[6],"options":{"strict":true},"referencedMap":[[6,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5,6],"packageJsons":["./node_modules/@types/bar/package.json","./node_modules/@types/bar2/package.json","./node_modules/bar/package.json","./node_modules/bar2/package.json","./node_modules/foo/package.json","./node_modules/foo2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -1733,8 +1749,16 @@ Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modu
|
||||
"not cached or not changed"
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/@types/bar/package.json",
|
||||
"./node_modules/@types/bar2/package.json",
|
||||
"./node_modules/bar/package.json",
|
||||
"./node_modules/bar2/package.json",
|
||||
"./node_modules/foo/package.json",
|
||||
"./node_modules/foo2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1394
|
||||
"size": 1632
|
||||
}
|
||||
|
||||
|
||||
@@ -1975,7 +1999,7 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modu
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"strict":true},"referencedMap":[[5,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./index.mts"],"fileIdsList":[[2,3,4]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"strict":true},"referencedMap":[[5,1]],"semanticDiagnosticsPerFile":[1,2,3,4,5],"packageJsons":["./node_modules/@types/bar/package.json","./node_modules/@types/bar2/package.json","./node_modules/bar/package.json","./node_modules/bar2/package.json","./node_modules/foo/package.json","./node_modules/foo2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -2081,8 +2105,16 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modu
|
||||
"not cached or not changed"
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/@types/bar/package.json",
|
||||
"./node_modules/@types/bar2/package.json",
|
||||
"./node_modules/bar/package.json",
|
||||
"./node_modules/bar2/package.json",
|
||||
"./node_modules/foo/package.json",
|
||||
"./node_modules/foo2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1271
|
||||
"size": 1509
|
||||
}
|
||||
|
||||
|
||||
@@ -2296,7 +2328,7 @@ FileWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/foo2/in
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./index.mts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[4],"options":{"strict":true},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[1,2,3,4],"version":"FakeTSVersion"}
|
||||
{"fileNames":["../../tslibs/ts/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./index.mts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[4],"options":{"strict":true},"referencedMap":[[4,1]],"semanticDiagnosticsPerFile":[1,2,3,4],"packageJsons":["./node_modules/@types/bar/package.json","./node_modules/@types/bar2/package.json","./node_modules/bar/package.json","./node_modules/bar2/package.json","./node_modules/foo/package.json","./node_modules/foo2/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -2386,8 +2418,16 @@ FileWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/foo2/in
|
||||
"not cached or not changed"
|
||||
]
|
||||
],
|
||||
"packageJsons": [
|
||||
"./node_modules/@types/bar/package.json",
|
||||
"./node_modules/@types/bar2/package.json",
|
||||
"./node_modules/bar/package.json",
|
||||
"./node_modules/bar2/package.json",
|
||||
"./node_modules/foo/package.json",
|
||||
"./node_modules/foo2/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1155
|
||||
"size": 1393
|
||||
}
|
||||
|
||||
|
||||
|
||||
+10
-4
@@ -158,7 +158,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/index.d.ts","../b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/index.d.ts","../b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -219,8 +219,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1055
|
||||
"size": 1092
|
||||
}
|
||||
|
||||
|
||||
@@ -235,7 +238,7 @@ Output::
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/lib/index.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -296,8 +299,11 @@ Output::
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1023
|
||||
"size": 1060
|
||||
}
|
||||
|
||||
|
||||
|
||||
+10
-4
@@ -160,7 +160,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/b/lib/index.d.ts","../../node_modules/b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/b/lib/index.d.ts","../../node_modules/b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -231,8 +231,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1147
|
||||
"size": 1184
|
||||
}
|
||||
|
||||
|
||||
@@ -247,7 +250,7 @@ Output::
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/lib/index.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -308,8 +311,11 @@ Output::
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1023
|
||||
"size": 1060
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -91,7 +91,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -152,8 +152,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1023
|
||||
"size": 1060
|
||||
}
|
||||
|
||||
|
||||
|
||||
+10
-4
@@ -158,7 +158,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/index.d.ts","../b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/index.d.ts","../b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -219,8 +219,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1069
|
||||
"size": 1106
|
||||
}
|
||||
|
||||
|
||||
@@ -235,7 +238,7 @@ Output::
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/lib/index.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -296,8 +299,11 @@ Output::
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1037
|
||||
"size": 1074
|
||||
}
|
||||
|
||||
|
||||
|
||||
+10
-4
@@ -160,7 +160,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/@issue/b/lib/index.d.ts","../../node_modules/@issue/b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/@issue/b/lib/index.d.ts","../../node_modules/@issue/b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -231,8 +231,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1175
|
||||
"size": 1212
|
||||
}
|
||||
|
||||
|
||||
@@ -247,7 +250,7 @@ Output::
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/lib/index.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -308,8 +311,11 @@ Output::
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1037
|
||||
"size": 1074
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -91,7 +91,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -152,8 +152,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1037
|
||||
"size": 1074
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -89,7 +89,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -150,8 +150,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1037
|
||||
"size": 1074
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -89,7 +89,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/index.ts","../b/src/bar.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -150,8 +150,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1023
|
||||
"size": 1060
|
||||
}
|
||||
|
||||
|
||||
|
||||
+10
-4
@@ -155,7 +155,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/foo.d.ts","../b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/foo.d.ts","../b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -216,8 +216,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1068
|
||||
"size": 1105
|
||||
}
|
||||
|
||||
|
||||
@@ -232,7 +235,7 @@ Output::
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/lib/test.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -293,8 +296,11 @@ Output::
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1036
|
||||
"size": 1073
|
||||
}
|
||||
|
||||
|
||||
|
||||
+10
-4
@@ -157,7 +157,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/b/lib/foo.d.ts","../../node_modules/b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/b/lib/foo.d.ts","../../node_modules/b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -228,8 +228,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1160
|
||||
"size": 1197
|
||||
}
|
||||
|
||||
|
||||
@@ -244,7 +247,7 @@ Output::
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/lib/test.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -305,8 +308,11 @@ Output::
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1036
|
||||
"size": 1073
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -88,7 +88,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -149,8 +149,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1036
|
||||
"size": 1073
|
||||
}
|
||||
|
||||
|
||||
|
||||
+10
-4
@@ -155,7 +155,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/foo.d.ts","../b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/foo.d.ts","../b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -216,8 +216,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1083
|
||||
"size": 1120
|
||||
}
|
||||
|
||||
|
||||
@@ -232,7 +235,7 @@ Output::
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/lib/test.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -293,8 +296,11 @@ Output::
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1051
|
||||
"size": 1088
|
||||
}
|
||||
|
||||
|
||||
|
||||
+10
-4
@@ -157,7 +157,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/@issue/b/lib/foo.d.ts","../../node_modules/@issue/b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/@issue/b/lib/foo.d.ts","../../node_modules/@issue/b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -228,8 +228,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1189
|
||||
"size": 1226
|
||||
}
|
||||
|
||||
|
||||
@@ -244,7 +247,7 @@ Output::
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/lib/test.js] file written with same contents
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -305,8 +308,11 @@ Output::
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1051
|
||||
"size": 1088
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -88,7 +88,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -149,8 +149,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1051
|
||||
"size": 1088
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -86,7 +86,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -147,8 +147,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1051
|
||||
"size": 1088
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -86,7 +86,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/src/foo.ts","../b/src/bar/foo.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"4646078106-export function foo() { }","1045484683-export function bar() { }",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -147,8 +147,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1036
|
||||
"size": 1073
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -414,7 +414,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 158
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 159
|
||||
{
|
||||
@@ -422,8 +422,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -1234,7 +1238,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 174
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 175
|
||||
{
|
||||
@@ -1242,8 +1246,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -410,7 +410,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 158
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 159
|
||||
{
|
||||
@@ -418,8 +418,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -1184,7 +1188,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 174
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 175
|
||||
{
|
||||
@@ -1192,8 +1196,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -410,7 +410,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -418,8 +418,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -1114,7 +1118,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -1122,8 +1126,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -174,7 +174,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 154
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 155
|
||||
{
|
||||
@@ -182,8 +182,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -949,7 +953,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 174
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 175
|
||||
{
|
||||
@@ -957,8 +961,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -174,7 +174,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 154
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 155
|
||||
{
|
||||
@@ -182,8 +182,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -972,7 +976,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 174
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 175
|
||||
{
|
||||
@@ -980,8 +984,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -174,7 +174,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -182,8 +182,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -902,7 +906,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -910,8 +914,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+6
-2
@@ -228,7 +228,7 @@ export {};
|
||||
//# sourceMappingURL=index.d.ts.map
|
||||
|
||||
//// [/home/src/projects/project/packages/package-b/build/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../tslibs/ts/lib/lib.es2021.d.ts","../../package-a/build/subfolder/index.d.ts","../../package-a/build/index.d.ts","../src/index.ts"],"fileIdsList":[[2],[3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-8746013027-export declare const FOO = \"bar\";\n","-14439737455-export * from \"./subfolder\";\n",{"version":"-5331409584-import { FOO } from \"package-a\";\nconsole.log(FOO);\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declarationMap":true,"esModuleInterop":true,"module":99,"outDir":"./","rootDir":"../src","target":8,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"referencedMap":[[3,1],[4,2]],"latestChangedDtsFile":"./index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../tslibs/ts/lib/lib.es2021.d.ts","../../package-a/build/subfolder/index.d.ts","../../package-a/build/index.d.ts","../src/index.ts"],"fileIdsList":[[2],[3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-8746013027-export declare const FOO = \"bar\";\n","-14439737455-export * from \"./subfolder\";\n",{"version":"-5331409584-import { FOO } from \"package-a\";\nconsole.log(FOO);\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declarationMap":true,"esModuleInterop":true,"module":99,"outDir":"./","rootDir":"../src","target":8,"tsBuildInfoFile":"./tsconfig.tsbuildinfo"},"referencedMap":[[3,1],[4,2]],"latestChangedDtsFile":"./index.d.ts","packageJsons":["../../package-a/package.json","../package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/packages/package-b/build/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -299,8 +299,12 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./index.d.ts",
|
||||
"packageJsons": [
|
||||
"../../package-a/package.json",
|
||||
"../package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1212
|
||||
"size": 1278
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -143,7 +143,7 @@ foo;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/app/bld/program/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../../shared/bld/library/index.d.ts","../../src/program/bar.ts","../../src/program/index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n",{"version":"-9677035610-import {foo} from \"shared\";","signature":"-3531856636-export {};\n"},{"version":"193491849-foo","signature":"5381-","affectsGlobalScope":true}],"root":[3,4],"options":{"composite":true,"outDir":"./"},"referencedMap":[[3,1]],"semanticDiagnosticsPerFile":[[4,[{"start":0,"length":3,"messageText":"Cannot find name 'foo'.","category":1,"code":2304}]]],"latestChangedDtsFile":"./index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../../shared/bld/library/index.d.ts","../../src/program/bar.ts","../../src/program/index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n",{"version":"-9677035610-import {foo} from \"shared\";","signature":"-3531856636-export {};\n"},{"version":"193491849-foo","signature":"5381-","affectsGlobalScope":true}],"root":[3,4],"options":{"composite":true,"outDir":"./"},"referencedMap":[[3,1]],"semanticDiagnosticsPerFile":[[4,[{"start":0,"length":3,"messageText":"Cannot find name 'foo'.","category":1,"code":2304}]]],"latestChangedDtsFile":"./index.d.ts","packageJsons":["../../../shared/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/app/bld/program/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -225,8 +225,11 @@ foo;
|
||||
]
|
||||
],
|
||||
"latestChangedDtsFile": "./index.d.ts",
|
||||
"packageJsons": [
|
||||
"../../../shared/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1171
|
||||
"size": 1219
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -142,7 +142,7 @@ foo;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/app/bld/program/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../../shared/bld/library/index.d.ts","../../src/program/bar.ts","../../src/program/index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n",{"version":"-9677035610-import {foo} from \"shared\";","signature":"-3531856636-export {};\n"},{"version":"193491849-foo","signature":"5381-","affectsGlobalScope":true}],"root":[3,4],"options":{"composite":true,"outDir":"./"},"referencedMap":[[3,1]],"semanticDiagnosticsPerFile":[[4,[{"start":0,"length":3,"messageText":"Cannot find name 'foo'.","category":1,"code":2304}]]],"latestChangedDtsFile":"./index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../../shared/bld/library/index.d.ts","../../src/program/bar.ts","../../src/program/index.ts"],"fileIdsList":[[2]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n",{"version":"-9677035610-import {foo} from \"shared\";","signature":"-3531856636-export {};\n"},{"version":"193491849-foo","signature":"5381-","affectsGlobalScope":true}],"root":[3,4],"options":{"composite":true,"outDir":"./"},"referencedMap":[[3,1]],"semanticDiagnosticsPerFile":[[4,[{"start":0,"length":3,"messageText":"Cannot find name 'foo'.","category":1,"code":2304}]]],"latestChangedDtsFile":"./index.d.ts","packageJsons":["../../../shared/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/app/bld/program/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -224,8 +224,11 @@ foo;
|
||||
]
|
||||
],
|
||||
"latestChangedDtsFile": "./index.d.ts",
|
||||
"packageJsons": [
|
||||
"../../../shared/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1171
|
||||
"size": 1219
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -163,7 +163,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/b/lib/index.d.ts","../../node_modules/b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/b/lib/index.d.ts","../../node_modules/b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -234,8 +234,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1147
|
||||
"size": 1184
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -161,7 +161,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/index.d.ts","../b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/index.d.ts","../b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"3563314629-import { foo } from 'b';\nimport { bar } from 'b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -222,8 +222,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1055
|
||||
"size": 1092
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -163,7 +163,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/@issue/b/lib/index.d.ts","../../node_modules/@issue/b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/@issue/b/lib/index.d.ts","../../node_modules/@issue/b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -234,8 +234,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1175
|
||||
"size": 1212
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -161,7 +161,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/index.d.ts","../b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/index.d.ts","../b/lib/bar.d.ts","./src/index.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"8545527381-import { foo } from '@issue/b';\nimport { bar } from '@issue/b/lib/bar';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/index.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -222,8 +222,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/index.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1069
|
||||
"size": 1106
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -160,7 +160,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/b/lib/foo.d.ts","../../node_modules/b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/b/lib/foo.d.ts","../../node_modules/b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -231,8 +231,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1160
|
||||
"size": 1197
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -158,7 +158,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/foo.d.ts","../b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/foo.d.ts","../b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"14700910833-import { foo } from 'b/lib/foo';\nimport { bar } from 'b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -219,8 +219,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1068
|
||||
"size": 1105
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -160,7 +160,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/@issue/b/lib/foo.d.ts","../../node_modules/@issue/b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../../node_modules/@issue/b/lib/foo.d.ts","../../node_modules/@issue/b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},{"version":"-5677608893-export declare function foo(): void;\n","impliedFormat":1},{"version":"-2904461644-export declare function bar(): void;\n","impliedFormat":1},{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -231,8 +231,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1189
|
||||
"size": 1226
|
||||
}
|
||||
|
||||
|
||||
|
||||
+5
-2
@@ -158,7 +158,7 @@ export {};
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo]
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/foo.d.ts","../b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","version":"FakeTSVersion"}
|
||||
{"fileNames":["../../../../../../home/src/tslibs/ts/lib/lib.d.ts","../b/lib/foo.d.ts","../b/lib/bar/foo.d.ts","./src/test.ts"],"fileIdsList":[[2,3]],"fileInfos":[{"version":"3858781397-/// <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; }\ninterface ReadonlyArray<T> {}\ndeclare const console: { log(msg: any): void; };","affectsGlobalScope":true},"-5677608893-export declare function foo(): void;\n","-2904461644-export declare function bar(): void;\n",{"version":"-20350237855-import { foo } from '@issue/b/lib/foo';\nimport { bar } from '@issue/b/lib/bar/foo';\nfoo();\nbar();\n","signature":"-3531856636-export {};\n"}],"root":[4],"options":{"composite":true,"outDir":"./lib","rootDir":"./src"},"referencedMap":[[4,1]],"latestChangedDtsFile":"./lib/test.d.ts","packageJsons":["../B/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/user/username/projects/myproject/packages/A/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -219,8 +219,11 @@ export {};
|
||||
]
|
||||
},
|
||||
"latestChangedDtsFile": "./lib/test.d.ts",
|
||||
"packageJsons": [
|
||||
"../B/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1083
|
||||
"size": 1120
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -1055,7 +1055,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 159
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 160
|
||||
{
|
||||
@@ -1063,8 +1063,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -2490,7 +2494,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 175
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 176
|
||||
{
|
||||
@@ -2498,8 +2502,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -791,7 +791,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 159
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 160
|
||||
{
|
||||
@@ -799,8 +799,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -1975,7 +1979,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 175
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 176
|
||||
{
|
||||
@@ -1983,8 +1987,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -1042,7 +1042,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 159
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 160
|
||||
{
|
||||
@@ -1050,8 +1050,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -2464,7 +2468,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 175
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 176
|
||||
{
|
||||
@@ -2472,8 +2476,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -808,7 +808,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 159
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 160
|
||||
{
|
||||
@@ -816,8 +816,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -1963,7 +1967,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 175
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 176
|
||||
{
|
||||
@@ -1971,8 +1975,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -1055,7 +1055,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -1063,8 +1063,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -2490,7 +2494,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -2498,8 +2502,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -808,7 +808,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -816,8 +816,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -1891,7 +1895,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -1899,8 +1903,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -177,7 +177,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 157
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 158
|
||||
{
|
||||
@@ -185,8 +185,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -2000,7 +2004,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 175
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 176
|
||||
{
|
||||
@@ -2008,8 +2012,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -177,7 +177,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 157
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 158
|
||||
{
|
||||
@@ -185,8 +185,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -1587,7 +1591,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 175
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 176
|
||||
{
|
||||
@@ -1595,8 +1599,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -177,7 +177,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 157
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 158
|
||||
{
|
||||
@@ -185,8 +185,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -1987,7 +1991,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 175
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 176
|
||||
{
|
||||
@@ -1995,8 +1999,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -177,7 +177,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 157
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 158
|
||||
{
|
||||
@@ -185,8 +185,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -1640,7 +1644,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 175
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 176
|
||||
{
|
||||
@@ -1648,8 +1652,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -177,7 +177,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -185,8 +185,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -2000,7 +2004,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -2008,8 +2012,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
+12
-4
@@ -177,7 +177,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -185,8 +185,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
@@ -1568,7 +1572,7 @@ export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo]
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
{"root":["../src/a.ts","../src/index.ts"],"packageJsons":["../package.json","../../../../../c/3/c-impl/c/package.json"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
@@ -1576,8 +1580,12 @@ export * from 'c';
|
||||
"../src/a.ts",
|
||||
"../src/index.ts"
|
||||
],
|
||||
"packageJsons": [
|
||||
"../package.json",
|
||||
"../../../../../c/3/c-impl/c/package.json"
|
||||
],
|
||||
"version": "FakeTSVersion",
|
||||
"size": 68
|
||||
"size": 146
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user