mirror of
https://github.com/microsoft/TypeScript.git
synced 2025-11-18 17:21:48 +00:00
Merge commit '9d98874739' into HEAD
This commit is contained in:
@@ -146,7 +146,8 @@ export const inverseJsxOptionMap: Map<string, string> = new Map(mapIterator(jsxO
|
||||
// augmented in another lib.
|
||||
// NOTE: We must reevaluate the target for upcoming features when each successive TC39 edition is ratified in
|
||||
// June of each year. This includes changes to `LanguageFeatureMinimumTarget`, `ScriptTarget`,
|
||||
// transformers/esnext.ts, commandLineParser.ts, and the contents of each lib/esnext.*.d.ts file.
|
||||
// `ScriptTargetFeatures` transformers/esnext.ts, compiler/commandLineParser.ts and the contents of each
|
||||
// lib/esnext.*.d.ts file.
|
||||
const libEntries: [string, string][] = [
|
||||
// JavaScript only
|
||||
["es5", "lib.es5.d.ts"],
|
||||
@@ -161,6 +162,7 @@ const libEntries: [string, string][] = [
|
||||
["es2021", "lib.es2021.d.ts"],
|
||||
["es2022", "lib.es2022.d.ts"],
|
||||
["es2023", "lib.es2023.d.ts"],
|
||||
["es2024", "lib.es2024.d.ts"],
|
||||
["esnext", "lib.esnext.d.ts"],
|
||||
// Host only
|
||||
["dom", "lib.dom.d.ts"],
|
||||
@@ -183,6 +185,7 @@ const libEntries: [string, string][] = [
|
||||
["es2015.symbol.wellknown", "lib.es2015.symbol.wellknown.d.ts"],
|
||||
["es2016.array.include", "lib.es2016.array.include.d.ts"],
|
||||
["es2016.intl", "lib.es2016.intl.d.ts"],
|
||||
["es2017.arraybuffer", "lib.es2017.arraybuffer.d.ts"],
|
||||
["es2017.date", "lib.es2017.date.d.ts"],
|
||||
["es2017.object", "lib.es2017.object.d.ts"],
|
||||
["es2017.sharedmemory", "lib.es2017.sharedmemory.d.ts"],
|
||||
@@ -215,12 +218,18 @@ const libEntries: [string, string][] = [
|
||||
["es2022.error", "lib.es2022.error.d.ts"],
|
||||
["es2022.intl", "lib.es2022.intl.d.ts"],
|
||||
["es2022.object", "lib.es2022.object.d.ts"],
|
||||
["es2022.sharedmemory", "lib.es2022.sharedmemory.d.ts"],
|
||||
["es2022.string", "lib.es2022.string.d.ts"],
|
||||
["es2022.regexp", "lib.es2022.regexp.d.ts"],
|
||||
["es2023.array", "lib.es2023.array.d.ts"],
|
||||
["es2023.collection", "lib.es2023.collection.d.ts"],
|
||||
["es2023.intl", "lib.es2023.intl.d.ts"],
|
||||
["es2024.arraybuffer", "lib.es2024.arraybuffer.d.ts"],
|
||||
["es2024.collection", "lib.es2024.collection.d.ts"],
|
||||
["es2024.object", "lib.es2024.object.d.ts"],
|
||||
["es2024.promise", "lib.es2024.promise.d.ts"],
|
||||
["es2024.regexp", "lib.es2024.regexp.d.ts"],
|
||||
["es2024.sharedmemory", "lib.es2024.sharedmemory.d.ts"],
|
||||
["es2024.string", "lib.es2024.string.d.ts"],
|
||||
["esnext.array", "lib.es2023.array.d.ts"],
|
||||
["esnext.collection", "lib.esnext.collection.d.ts"],
|
||||
["esnext.symbol", "lib.es2019.symbol.d.ts"],
|
||||
@@ -229,13 +238,13 @@ const libEntries: [string, string][] = [
|
||||
["esnext.disposable", "lib.esnext.disposable.d.ts"],
|
||||
["esnext.bigint", "lib.es2020.bigint.d.ts"],
|
||||
["esnext.string", "lib.es2022.string.d.ts"],
|
||||
["esnext.promise", "lib.esnext.promise.d.ts"],
|
||||
["esnext.promise", "lib.es2024.promise.d.ts"],
|
||||
["esnext.weakref", "lib.es2021.weakref.d.ts"],
|
||||
["esnext.decorators", "lib.esnext.decorators.d.ts"],
|
||||
["esnext.object", "lib.esnext.object.d.ts"],
|
||||
["esnext.object", "lib.es2024.object.d.ts"],
|
||||
["esnext.array", "lib.esnext.array.d.ts"],
|
||||
["esnext.regexp", "lib.esnext.regexp.d.ts"],
|
||||
["esnext.string", "lib.esnext.string.d.ts"],
|
||||
["esnext.regexp", "lib.es2024.regexp.d.ts"],
|
||||
["esnext.string", "lib.es2024.string.d.ts"],
|
||||
["esnext.iterator", "lib.esnext.iterator.d.ts"],
|
||||
["decorators", "lib.decorators.d.ts"],
|
||||
["decorators.legacy", "lib.decorators.legacy.d.ts"],
|
||||
@@ -558,6 +567,7 @@ export const targetOptionDeclaration: CommandLineOptionOfCustomType = {
|
||||
es2021: ScriptTarget.ES2021,
|
||||
es2022: ScriptTarget.ES2022,
|
||||
es2023: ScriptTarget.ES2023,
|
||||
es2024: ScriptTarget.ES2024,
|
||||
esnext: ScriptTarget.ESNext,
|
||||
})),
|
||||
affectsSourceFile: true,
|
||||
|
||||
@@ -74,7 +74,8 @@ const enum UsingKind {
|
||||
export function transformESNext(context: TransformationContext): (x: SourceFile | Bundle) => SourceFile | Bundle {
|
||||
// NOTE: We must reevaluate the target for upcoming features when each successive TC39 edition is ratified in
|
||||
// June of each year. This includes changes to `LanguageFeatureMinimumTarget`, `ScriptTarget`,
|
||||
// transformers/esnext.ts, commandLineParser.ts, and the contents of each lib/esnext.*.d.ts file.
|
||||
// `ScriptTargetFeatures` transformers/esnext.ts, compiler/commandLineParser.ts and the contents of each
|
||||
// lib/esnext.*.d.ts file.
|
||||
|
||||
const {
|
||||
factory,
|
||||
|
||||
+11
-7
@@ -7579,7 +7579,8 @@ export const enum ScriptKind {
|
||||
|
||||
// NOTE: We must reevaluate the target for upcoming features when each successive TC39 edition is ratified in
|
||||
// June of each year. This includes changes to `LanguageFeatureMinimumTarget`, `ScriptTarget`,
|
||||
// transformers/esnext.ts, commandLineParser.ts, and the contents of each lib/esnext.*.d.ts file.
|
||||
// `ScriptTargetFeatures` transformers/esnext.ts, compiler/commandLineParser.ts and the contents of each
|
||||
// lib/esnext.*.d.ts file.
|
||||
export const enum ScriptTarget {
|
||||
/** @deprecated */
|
||||
ES3 = 0,
|
||||
@@ -7593,6 +7594,7 @@ export const enum ScriptTarget {
|
||||
ES2021 = 8,
|
||||
ES2022 = 9,
|
||||
ES2023 = 10,
|
||||
ES2024 = 11,
|
||||
ESNext = 99,
|
||||
JSON = 100,
|
||||
Latest = ESNext,
|
||||
@@ -8381,13 +8383,15 @@ export type LanugageFeatures =
|
||||
| "RegularExpressionFlagsHasIndices"
|
||||
// ES2023 Features
|
||||
| "ShebangComments"
|
||||
// ES2024 Features
|
||||
| "RegularExpressionFlagsUnicodeSets"
|
||||
// Upcoming Features
|
||||
// NOTE: We must reevaluate the target for upcoming features when each successive TC39 edition is ratified in
|
||||
// June of each year. This includes changes to `LanguageFeatureMinimumTarget`, `ScriptTarget`,
|
||||
// transformers/esnext.ts, commandLineParser.ts, and the contents of each lib/esnext.*.d.ts file.
|
||||
| "UsingAndAwaitUsing"
|
||||
| "ClassAndClassElementDecorators" // `using x = y`, `await using x = y`
|
||||
| "RegularExpressionFlagsUnicodeSets" // `@dec class C {}`, `class C { @dec m() {} }`
|
||||
// `ScriptTargetFeatures` transformers/esnext.ts, compiler/commandLineParser.ts and the contents of each
|
||||
// lib/esnext.*.d.ts file.
|
||||
| "UsingAndAwaitUsing" // `using x = y`, `await using x = y`
|
||||
| "ClassAndClassElementDecorators" // `@dec class C {}`, `class C { @dec m() {} }`
|
||||
;
|
||||
|
||||
/**
|
||||
@@ -8426,10 +8430,10 @@ export const LanguageFeatureMinimumTarget: Record<LanugageFeatures, ScriptTarget
|
||||
ClassFields: ScriptTarget.ES2022,
|
||||
PrivateNamesAndClassStaticBlocks: ScriptTarget.ES2022,
|
||||
RegularExpressionFlagsHasIndices: ScriptTarget.ES2022,
|
||||
ShebangComments: ScriptTarget.ESNext,
|
||||
ShebangComments: ScriptTarget.ES2023,
|
||||
RegularExpressionFlagsUnicodeSets: ScriptTarget.ES2024,
|
||||
UsingAndAwaitUsing: ScriptTarget.ESNext,
|
||||
ClassAndClassElementDecorators: ScriptTarget.ESNext,
|
||||
RegularExpressionFlagsUnicodeSets: ScriptTarget.ESNext,
|
||||
};
|
||||
|
||||
// dprint-ignore
|
||||
|
||||
@@ -1367,6 +1367,10 @@ export function getInternalEmitFlags(node: Node): InternalEmitFlags {
|
||||
/** @internal */
|
||||
export type ScriptTargetFeatures = ReadonlyMap<string, ReadonlyMap<string, string[]>>;
|
||||
|
||||
// NOTE: We must reevaluate the target for upcoming features when each successive TC39 edition is ratified in
|
||||
// June of each year. This includes changes to `LanguageFeatureMinimumTarget`, `ScriptTarget`,
|
||||
// `ScriptTargetFeatures` transformers/esnext.ts, compiler/commandLineParser.ts and the contents of each
|
||||
// lib/esnext.*.d.ts file.
|
||||
/** @internal */
|
||||
export const getScriptTargetFeatures: () => ScriptTargetFeatures = /* @__PURE__ */ memoize((): ScriptTargetFeatures =>
|
||||
new Map(Object.entries({
|
||||
@@ -1405,11 +1409,45 @@ export const getScriptTargetFeatures: () => ScriptTargetFeatures = /* @__PURE__
|
||||
AsyncIterator: new Map(Object.entries({
|
||||
es2015: emptyArray,
|
||||
})),
|
||||
ArrayBuffer: new Map(Object.entries({
|
||||
es2024: [
|
||||
"maxByteLength",
|
||||
"resizable",
|
||||
"resize",
|
||||
"detached",
|
||||
"transfer",
|
||||
"transferToFixedLength",
|
||||
],
|
||||
})),
|
||||
Atomics: new Map(Object.entries({
|
||||
es2017: emptyArray,
|
||||
es2017: [
|
||||
"add",
|
||||
"and",
|
||||
"compareExchange",
|
||||
"exchange",
|
||||
"isLockFree",
|
||||
"load",
|
||||
"or",
|
||||
"store",
|
||||
"sub",
|
||||
"wait",
|
||||
"notify",
|
||||
"xor",
|
||||
],
|
||||
es2024: [
|
||||
"waitAsync",
|
||||
],
|
||||
})),
|
||||
SharedArrayBuffer: new Map(Object.entries({
|
||||
es2017: emptyArray,
|
||||
es2017: [
|
||||
"byteLength",
|
||||
"slice",
|
||||
],
|
||||
es2024: [
|
||||
"growable",
|
||||
"maxByteLength",
|
||||
"grow",
|
||||
],
|
||||
})),
|
||||
AsyncIterable: new Map(Object.entries({
|
||||
es2018: emptyArray,
|
||||
@@ -1432,6 +1470,9 @@ export const getScriptTargetFeatures: () => ScriptTargetFeatures = /* @__PURE__
|
||||
es2018: [
|
||||
"dotAll",
|
||||
],
|
||||
es2024: [
|
||||
"unicodeSets",
|
||||
],
|
||||
})),
|
||||
Reflect: new Map(Object.entries({
|
||||
es2015: [
|
||||
@@ -1478,6 +1519,9 @@ export const getScriptTargetFeatures: () => ScriptTargetFeatures = /* @__PURE__
|
||||
es2022: [
|
||||
"hasOwn",
|
||||
],
|
||||
es2024: [
|
||||
"groupBy",
|
||||
],
|
||||
})),
|
||||
NumberConstructor: new Map(Object.entries({
|
||||
es2015: [
|
||||
@@ -1517,12 +1561,26 @@ export const getScriptTargetFeatures: () => ScriptTargetFeatures = /* @__PURE__
|
||||
"values",
|
||||
],
|
||||
})),
|
||||
MapConstructor: new Map(Object.entries({
|
||||
es2024: [
|
||||
"groupBy",
|
||||
],
|
||||
})),
|
||||
Set: new Map(Object.entries({
|
||||
es2015: [
|
||||
"entries",
|
||||
"keys",
|
||||
"values",
|
||||
],
|
||||
esnext: [
|
||||
"union",
|
||||
"intersection",
|
||||
"difference",
|
||||
"symmetricDifference",
|
||||
"isSubsetOf",
|
||||
"isSupersetOf",
|
||||
"isDisjointFrom",
|
||||
],
|
||||
})),
|
||||
PromiseConstructor: new Map(Object.entries({
|
||||
es2015: [
|
||||
@@ -1537,6 +1595,9 @@ export const getScriptTargetFeatures: () => ScriptTargetFeatures = /* @__PURE__
|
||||
es2021: [
|
||||
"any",
|
||||
],
|
||||
es2024: [
|
||||
"withResolvers",
|
||||
],
|
||||
})),
|
||||
Symbol: new Map(Object.entries({
|
||||
es2015: [
|
||||
@@ -1602,7 +1663,7 @@ export const getScriptTargetFeatures: () => ScriptTargetFeatures = /* @__PURE__
|
||||
es2022: [
|
||||
"at",
|
||||
],
|
||||
esnext: [
|
||||
es2024: [
|
||||
"isWellFormed",
|
||||
"toWellFormed",
|
||||
],
|
||||
@@ -1648,6 +1709,11 @@ export const getScriptTargetFeatures: () => ScriptTargetFeatures = /* @__PURE__
|
||||
es2020: [
|
||||
"matchAll",
|
||||
],
|
||||
esnext: [
|
||||
"metadata",
|
||||
"dispose",
|
||||
"asyncDispose",
|
||||
],
|
||||
})),
|
||||
DataView: new Map(Object.entries({
|
||||
es2020: [
|
||||
|
||||
Vendored
+1
-1
@@ -4,7 +4,7 @@ declare namespace Intl {
|
||||
* the canonical locale names. Duplicates will be omitted and elements
|
||||
* will be validated as structurally valid language tags.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/getCanonicalLocales)
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/getCanonicalLocales)
|
||||
*
|
||||
* @param locale A list of String values for which to get the canonical locale names
|
||||
* @returns An array containing the canonical and validated locale names.
|
||||
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
interface ArrayBufferConstructor {
|
||||
new (): ArrayBuffer;
|
||||
}
|
||||
Vendored
+3
-2
@@ -1,7 +1,8 @@
|
||||
/// <reference lib="es2016" />
|
||||
/// <reference lib="es2017.arraybuffer" />
|
||||
/// <reference lib="es2017.date" />
|
||||
/// <reference lib="es2017.intl" />
|
||||
/// <reference lib="es2017.object" />
|
||||
/// <reference lib="es2017.sharedmemory" />
|
||||
/// <reference lib="es2017.string" />
|
||||
/// <reference lib="es2017.intl" />
|
||||
/// <reference lib="es2017.typedarrays" />
|
||||
/// <reference lib="es2017.date" />
|
||||
|
||||
Vendored
+2
-2
@@ -10,14 +10,14 @@ interface SharedArrayBuffer {
|
||||
/**
|
||||
* Returns a section of an SharedArrayBuffer.
|
||||
*/
|
||||
slice(begin: number, end?: number): SharedArrayBuffer;
|
||||
slice(begin?: number, end?: number): SharedArrayBuffer;
|
||||
readonly [Symbol.species]: SharedArrayBuffer;
|
||||
readonly [Symbol.toStringTag]: "SharedArrayBuffer";
|
||||
}
|
||||
|
||||
interface SharedArrayBufferConstructor {
|
||||
readonly prototype: SharedArrayBuffer;
|
||||
new (byteLength: number): SharedArrayBuffer;
|
||||
new (byteLength?: number): SharedArrayBuffer;
|
||||
}
|
||||
declare var SharedArrayBuffer: SharedArrayBufferConstructor;
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -2,7 +2,7 @@
|
||||
|
||||
interface BigIntToLocaleStringOptions {
|
||||
/**
|
||||
* The locale matching algorithm to use.The default is "best fit". For information about this option, see the {@link https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation Intl page}.
|
||||
* The locale matching algorithm to use.The default is "best fit". For information about this option, see the {@link https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation Intl page}.
|
||||
*/
|
||||
localeMatcher?: string;
|
||||
/**
|
||||
|
||||
Vendored
+36
-36
@@ -5,14 +5,14 @@ declare namespace Intl {
|
||||
*
|
||||
* For example: "fa", "es-MX", "zh-Hant-TW".
|
||||
*
|
||||
* See [MDN - Intl - locales argument](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument).
|
||||
* See [MDN - Intl - locales argument](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument).
|
||||
*/
|
||||
type UnicodeBCP47LocaleIdentifier = string;
|
||||
|
||||
/**
|
||||
* Unit to use in the relative time internationalized message.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/format#Parameters).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/format#Parameters).
|
||||
*/
|
||||
type RelativeTimeFormatUnit =
|
||||
| "year"
|
||||
@@ -39,7 +39,7 @@ declare namespace Intl {
|
||||
* but `formatToParts` only outputs singular (e.g. "day") not plural (e.g.
|
||||
* "days").
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts#Using_formatToParts).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts#Using_formatToParts).
|
||||
*/
|
||||
type RelativeTimeFormatUnitSingular =
|
||||
| "year"
|
||||
@@ -61,21 +61,21 @@ declare namespace Intl {
|
||||
/**
|
||||
* The format of output message.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters).
|
||||
*/
|
||||
type RelativeTimeFormatNumeric = "always" | "auto";
|
||||
|
||||
/**
|
||||
* The length of the internationalized message.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters).
|
||||
*/
|
||||
type RelativeTimeFormatStyle = "long" | "short" | "narrow";
|
||||
|
||||
/**
|
||||
* The locale or locales to use
|
||||
*
|
||||
* See [MDN - Intl - locales argument](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument).
|
||||
* See [MDN - Intl - locales argument](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#locales_argument).
|
||||
*/
|
||||
type LocalesArgument = UnicodeBCP47LocaleIdentifier | Locale | readonly (UnicodeBCP47LocaleIdentifier | Locale)[] | undefined;
|
||||
|
||||
@@ -83,7 +83,7 @@ declare namespace Intl {
|
||||
* An object with some or all of properties of `options` parameter
|
||||
* of `Intl.RelativeTimeFormat` constructor.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters).
|
||||
*/
|
||||
interface RelativeTimeFormatOptions {
|
||||
/** The locale matching algorithm to use. For information about this option, see [Intl page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation). */
|
||||
@@ -99,7 +99,7 @@ declare namespace Intl {
|
||||
* and formatting options computed during initialization
|
||||
* of the `Intl.RelativeTimeFormat` object
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/resolvedOptions#Description).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/resolvedOptions#Description).
|
||||
*/
|
||||
interface ResolvedRelativeTimeFormatOptions {
|
||||
locale: UnicodeBCP47LocaleIdentifier;
|
||||
@@ -112,7 +112,7 @@ declare namespace Intl {
|
||||
* An object representing the relative time format in parts
|
||||
* that can be used for custom locale-aware formatting.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts#Using_formatToParts).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts#Using_formatToParts).
|
||||
*/
|
||||
type RelativeTimeFormatPart =
|
||||
| {
|
||||
@@ -148,7 +148,7 @@ declare namespace Intl {
|
||||
*
|
||||
* @returns {string} Internationalized relative time message as string
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/format).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/format).
|
||||
*/
|
||||
format(value: number, unit: RelativeTimeFormatUnit): string;
|
||||
|
||||
@@ -161,14 +161,14 @@ declare namespace Intl {
|
||||
*
|
||||
* @throws `RangeError` if `unit` was given something other than `unit` possible values
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/formatToParts).
|
||||
*/
|
||||
formatToParts(value: number, unit: RelativeTimeFormatUnit): RelativeTimeFormatPart[];
|
||||
|
||||
/**
|
||||
* Provides access to the locale and options computed during initialization of this `Intl.RelativeTimeFormat` object.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/resolvedOptions).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/resolvedOptions).
|
||||
*/
|
||||
resolvedOptions(): ResolvedRelativeTimeFormatOptions;
|
||||
}
|
||||
@@ -177,22 +177,22 @@ declare namespace Intl {
|
||||
* The [`Intl.RelativeTimeFormat`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RelativeTimeFormat)
|
||||
* object is a constructor for objects that enable language-sensitive relative time formatting.
|
||||
*
|
||||
* [Compatibility](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat#Browser_compatibility).
|
||||
* [Compatibility](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat#Browser_compatibility).
|
||||
*/
|
||||
const RelativeTimeFormat: {
|
||||
/**
|
||||
* Creates [Intl.RelativeTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RelativeTimeFormat) objects
|
||||
* Creates [Intl.RelativeTimeFormat](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RelativeTimeFormat) objects
|
||||
*
|
||||
* @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.
|
||||
* For the general form and interpretation of the locales argument,
|
||||
* see the [`Intl` page](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
* see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
*
|
||||
* @param options - An [object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters)
|
||||
* @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters)
|
||||
* with some or all of options of `RelativeTimeFormatOptions`.
|
||||
*
|
||||
* @returns [Intl.RelativeTimeFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RelativeTimeFormat) object.
|
||||
* @returns [Intl.RelativeTimeFormat](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/RelativeTimeFormat) object.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat).
|
||||
*/
|
||||
new (
|
||||
locales?: LocalesArgument,
|
||||
@@ -206,16 +206,16 @@ declare namespace Intl {
|
||||
*
|
||||
* @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.
|
||||
* For the general form and interpretation of the locales argument,
|
||||
* see the [`Intl` page](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
* see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
*
|
||||
* @param options - An [object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters)
|
||||
* @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/RelativeTimeFormat#Parameters)
|
||||
* with some or all of options of the formatting.
|
||||
*
|
||||
* @returns An array containing those of the provided locales
|
||||
* that are supported in date and time formatting
|
||||
* without having to fall back to the runtime's default locale.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/supportedLocalesOf).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTimeFormat/supportedLocalesOf).
|
||||
*/
|
||||
supportedLocalesOf(
|
||||
locales?: LocalesArgument,
|
||||
@@ -318,18 +318,18 @@ declare namespace Intl {
|
||||
}
|
||||
|
||||
/**
|
||||
* Constructor creates [Intl.Locale](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale)
|
||||
* Constructor creates [Intl.Locale](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale)
|
||||
* objects
|
||||
*
|
||||
* @param tag - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646).
|
||||
* For the general form and interpretation of the locales argument,
|
||||
* see the [`Intl` page](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
* see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
*
|
||||
* @param options - An [object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/Locale#Parameters) with some or all of options of the locale.
|
||||
* @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale/Locale#Parameters) with some or all of options of the locale.
|
||||
*
|
||||
* @returns [Intl.Locale](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale) object.
|
||||
* @returns [Intl.Locale](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale) object.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Locale).
|
||||
*/
|
||||
const Locale: {
|
||||
new (tag: UnicodeBCP47LocaleIdentifier | Locale, options?: LocaleOptions): Locale;
|
||||
@@ -370,7 +370,7 @@ declare namespace Intl {
|
||||
interface DisplayNames {
|
||||
/**
|
||||
* Receives a code and returns a string based on the locale and options provided when instantiating
|
||||
* [`Intl.DisplayNames()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames)
|
||||
* [`Intl.DisplayNames()`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames)
|
||||
*
|
||||
* @param code The `code` to provide depends on the `type` passed to display name during creation:
|
||||
* - If the type is `"region"`, code should be either an [ISO-3166 two letters region code](https://www.iso.org/iso-3166-country-codes.html),
|
||||
@@ -381,35 +381,35 @@ declare namespace Intl {
|
||||
* `languageCode` is either a two letters ISO 639-1 language code or a three letters ISO 639-2 language code.
|
||||
* - If the type is `"currency"`, code should be a [3-letter ISO 4217 currency code](https://www.iso.org/iso-4217-currency-codes.html).
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/of).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/of).
|
||||
*/
|
||||
of(code: string): string | undefined;
|
||||
/**
|
||||
* Returns a new object with properties reflecting the locale and style formatting options computed during the construction of the current
|
||||
* [`Intl/DisplayNames`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames) object.
|
||||
* [`Intl/DisplayNames`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames) object.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/resolvedOptions).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/resolvedOptions).
|
||||
*/
|
||||
resolvedOptions(): ResolvedDisplayNamesOptions;
|
||||
}
|
||||
|
||||
/**
|
||||
* The [`Intl.DisplayNames()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames)
|
||||
* The [`Intl.DisplayNames()`](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames)
|
||||
* object enables the consistent translation of language, region and script display names.
|
||||
*
|
||||
* [Compatibility](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames#browser_compatibility).
|
||||
* [Compatibility](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames#browser_compatibility).
|
||||
*/
|
||||
const DisplayNames: {
|
||||
prototype: DisplayNames;
|
||||
|
||||
/**
|
||||
* @param locales A string with a BCP 47 language tag, or an array of such strings.
|
||||
* For the general form and interpretation of the `locales` argument, see the [Intl](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation)
|
||||
* For the general form and interpretation of the `locales` argument, see the [Intl](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation)
|
||||
* page.
|
||||
*
|
||||
* @param options An object for setting up a display name.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/DisplayNames).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/DisplayNames).
|
||||
*/
|
||||
new (locales: LocalesArgument, options: DisplayNamesOptions): DisplayNames;
|
||||
|
||||
@@ -417,14 +417,14 @@ declare namespace Intl {
|
||||
* Returns an array containing those of the provided locales that are supported in display names without having to fall back to the runtime's default locale.
|
||||
*
|
||||
* @param locales A string with a BCP 47 language tag, or an array of such strings.
|
||||
* For the general form and interpretation of the `locales` argument, see the [Intl](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation)
|
||||
* For the general form and interpretation of the `locales` argument, see the [Intl](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#locale_identification_and_negotiation)
|
||||
* page.
|
||||
*
|
||||
* @param options An object with a locale matcher.
|
||||
*
|
||||
* @returns An array of strings representing a subset of the given locale tags that are supported in display names without having to fall back to the runtime's default locale.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/supportedLocalesOf).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNames/supportedLocalesOf).
|
||||
*/
|
||||
supportedLocalesOf(locales?: LocalesArgument, options?: { localeMatcher?: RelativeTimeFormatLocaleMatcher; }): UnicodeBCP47LocaleIdentifier[];
|
||||
};
|
||||
|
||||
Vendored
+2
@@ -1,3 +1,5 @@
|
||||
/// <reference lib="es2020.bigint" />
|
||||
|
||||
interface Atomics {
|
||||
/**
|
||||
* Adds a value to the value at the given position in the array, returning the original value.
|
||||
|
||||
Vendored
+2
@@ -1,3 +1,5 @@
|
||||
/// <reference lib="es2015.iterable" />
|
||||
/// <reference lib="es2020.intl" />
|
||||
/// <reference lib="es2020.symbol.wellknown" />
|
||||
|
||||
interface String {
|
||||
|
||||
Vendored
+17
-17
@@ -32,28 +32,28 @@ declare namespace Intl {
|
||||
/**
|
||||
* The locale matching algorithm to use.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).
|
||||
*/
|
||||
type ListFormatLocaleMatcher = "lookup" | "best fit";
|
||||
|
||||
/**
|
||||
* The format of output message.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).
|
||||
*/
|
||||
type ListFormatType = "conjunction" | "disjunction" | "unit";
|
||||
|
||||
/**
|
||||
* The length of the formatted message.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).
|
||||
*/
|
||||
type ListFormatStyle = "long" | "short" | "narrow";
|
||||
|
||||
/**
|
||||
* An object with some or all properties of the `Intl.ListFormat` constructor `options` parameter.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters).
|
||||
*/
|
||||
interface ListFormatOptions {
|
||||
/** The locale matching algorithm to use. For information about this option, see [Intl page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation). */
|
||||
@@ -74,26 +74,26 @@ declare namespace Intl {
|
||||
/**
|
||||
* Returns a string with a language-specific representation of the list.
|
||||
*
|
||||
* @param list - An iterable object, such as an [Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array).
|
||||
* @param list - An iterable object, such as an [Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array).
|
||||
*
|
||||
* @throws `TypeError` if `list` includes something other than the possible values.
|
||||
*
|
||||
* @returns {string} A language-specific formatted string representing the elements of the list.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/format).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/format).
|
||||
*/
|
||||
format(list: Iterable<string>): string;
|
||||
|
||||
/**
|
||||
* Returns an Array of objects representing the different components that can be used to format a list of values in a locale-aware fashion.
|
||||
*
|
||||
* @param list - An iterable object, such as an [Array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array), to be formatted according to a locale.
|
||||
* @param list - An iterable object, such as an [Array](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Array), to be formatted according to a locale.
|
||||
*
|
||||
* @throws `TypeError` if `list` includes something other than the possible values.
|
||||
*
|
||||
* @returns {{ type: "element" | "literal", value: string; }[]} An Array of components which contains the formatted parts from the list.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/formatToParts).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/formatToParts).
|
||||
*/
|
||||
formatToParts(list: Iterable<string>): { type: "element" | "literal"; value: string; }[];
|
||||
|
||||
@@ -102,7 +102,7 @@ declare namespace Intl {
|
||||
* formatting options computed during the construction of the current
|
||||
* `Intl.ListFormat` object.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/resolvedOptions).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/resolvedOptions).
|
||||
*/
|
||||
resolvedOptions(): ResolvedListFormatOptions;
|
||||
}
|
||||
@@ -111,19 +111,19 @@ declare namespace Intl {
|
||||
prototype: ListFormat;
|
||||
|
||||
/**
|
||||
* Creates [Intl.ListFormat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat) objects that
|
||||
* Creates [Intl.ListFormat](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat) objects that
|
||||
* enable language-sensitive list formatting.
|
||||
*
|
||||
* @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.
|
||||
* For the general form and interpretation of the `locales` argument,
|
||||
* see the [`Intl` page](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
* see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
*
|
||||
* @param options - An [object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters)
|
||||
* @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/ListFormat#parameters)
|
||||
* with some or all options of `ListFormatOptions`.
|
||||
*
|
||||
* @returns [Intl.ListFormatOptions](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat) object.
|
||||
* @returns [Intl.ListFormatOptions](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat) object.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat).
|
||||
*/
|
||||
new (locales?: LocalesArgument, options?: ListFormatOptions): ListFormat;
|
||||
|
||||
@@ -133,15 +133,15 @@ declare namespace Intl {
|
||||
*
|
||||
* @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.
|
||||
* For the general form and interpretation of the `locales` argument,
|
||||
* see the [`Intl` page](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
* see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
*
|
||||
* @param options - An [object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/supportedLocalesOf#parameters).
|
||||
* @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/supportedLocalesOf#parameters).
|
||||
* with some or all possible options.
|
||||
*
|
||||
* @returns An array of strings representing a subset of the given locale tags that are supported in list
|
||||
* formatting without having to fall back to the runtime's default locale.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/supportedLocalesOf).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat/supportedLocalesOf).
|
||||
*/
|
||||
supportedLocalesOf(locales: LocalesArgument, options?: Pick<ListFormatOptions, "localeMatcher">): UnicodeBCP47LocaleIdentifier[];
|
||||
};
|
||||
|
||||
Vendored
+2
@@ -1,3 +1,5 @@
|
||||
/// <reference lib="es2015.symbol.wellknown" />
|
||||
|
||||
interface WeakRef<T extends WeakKey> {
|
||||
readonly [Symbol.toStringTag]: "WeakRef";
|
||||
|
||||
|
||||
Vendored
+1
-2
@@ -3,6 +3,5 @@
|
||||
/// <reference lib="es2022.error" />
|
||||
/// <reference lib="es2022.intl" />
|
||||
/// <reference lib="es2022.object" />
|
||||
/// <reference lib="es2022.sharedmemory" />
|
||||
/// <reference lib="es2022.string" />
|
||||
/// <reference lib="es2022.regexp" />
|
||||
/// <reference lib="es2022.string" />
|
||||
|
||||
Vendored
+2
@@ -1,3 +1,5 @@
|
||||
/// <reference lib="es2021.promise" />
|
||||
|
||||
interface ErrorOptions {
|
||||
cause?: unknown;
|
||||
}
|
||||
|
||||
Vendored
+9
-9
@@ -2,7 +2,7 @@ declare namespace Intl {
|
||||
/**
|
||||
* An object with some or all properties of the `Intl.Segmenter` constructor `options` parameter.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/Segmenter#parameters)
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/Segmenter#parameters)
|
||||
*/
|
||||
interface SegmenterOptions {
|
||||
/** The locale matching algorithm to use. For information about this option, see [Intl page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_negotiation). */
|
||||
@@ -66,14 +66,14 @@ declare namespace Intl {
|
||||
*
|
||||
* @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.
|
||||
* For the general form and interpretation of the `locales` argument,
|
||||
* see the [`Intl` page](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
* see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
*
|
||||
* @param options - An [object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/Segmenter#parameters)
|
||||
* @param options - An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/Segmenter#parameters)
|
||||
* with some or all options of `SegmenterOptions`.
|
||||
*
|
||||
* @returns [Intl.Segmenter](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segments) object.
|
||||
* @returns [Intl.Segmenter](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segments) object.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter).
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter).
|
||||
*/
|
||||
new (locales?: LocalesArgument, options?: SegmenterOptions): Segmenter;
|
||||
|
||||
@@ -82,19 +82,19 @@ declare namespace Intl {
|
||||
*
|
||||
* @param locales - A string with a [BCP 47 language tag](http://tools.ietf.org/html/rfc5646), or an array of such strings.
|
||||
* For the general form and interpretation of the `locales` argument,
|
||||
* see the [`Intl` page](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
* see the [`Intl` page](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_identification_and_negotiation).
|
||||
*
|
||||
* @param options An [object](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/supportedLocalesOf#parameters).
|
||||
* @param options An [object](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/supportedLocalesOf#parameters).
|
||||
* with some or all possible options.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/supportedLocalesOf)
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter/supportedLocalesOf)
|
||||
*/
|
||||
supportedLocalesOf(locales: LocalesArgument, options?: Pick<SegmenterOptions, "localeMatcher">): UnicodeBCP47LocaleIdentifier[];
|
||||
};
|
||||
|
||||
/**
|
||||
* Returns a sorted array of the supported collation, calendar, currency, numbering system, timezones, and units by the implementation.
|
||||
* [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/supportedValuesOf)
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Intl/supportedValuesOf)
|
||||
*
|
||||
* @param key A string indicating the category of values to return.
|
||||
* @returns A sorted array of the supported values.
|
||||
|
||||
Vendored
+47
@@ -0,0 +1,47 @@
|
||||
interface ArrayBuffer {
|
||||
/**
|
||||
* If this ArrayBuffer is resizable, returns the maximum byte length given during construction; returns the byte length if not.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/maxByteLength)
|
||||
*/
|
||||
get maxByteLength(): number;
|
||||
|
||||
/**
|
||||
* Returns true if this ArrayBuffer can be resized.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/resizable)
|
||||
*/
|
||||
get resizable(): boolean;
|
||||
|
||||
/**
|
||||
* Resizes the ArrayBuffer to the specified size (in bytes).
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/resize)
|
||||
*/
|
||||
resize(newByteLength?: number): void;
|
||||
|
||||
/**
|
||||
* Returns a boolean indicating whether or not this buffer has been detached (transferred).
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/detached)
|
||||
*/
|
||||
get detached(): boolean;
|
||||
|
||||
/**
|
||||
* Creates a new ArrayBuffer with the same byte content as this buffer, then detaches this buffer.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/transfer)
|
||||
*/
|
||||
transfer(newByteLength?: number): ArrayBuffer;
|
||||
|
||||
/**
|
||||
* Creates a new non-resizable ArrayBuffer with the same byte content as this buffer, then detaches this buffer.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/ArrayBuffer/transferToFixedLength)
|
||||
*/
|
||||
transferToFixedLength(newByteLength?: number): ArrayBuffer;
|
||||
}
|
||||
|
||||
interface ArrayBufferConstructor {
|
||||
new (byteLength: number, options?: { maxByteLength?: number; }): ArrayBuffer;
|
||||
}
|
||||
Vendored
+11
@@ -0,0 +1,11 @@
|
||||
interface MapConstructor {
|
||||
/**
|
||||
* Groups members of an iterable according to the return value of the passed callback.
|
||||
* @param items An iterable.
|
||||
* @param keySelector A callback which will be invoked for each item in items.
|
||||
*/
|
||||
groupBy<K, T>(
|
||||
items: Iterable<T>,
|
||||
keySelector: (item: T, index: number) => K,
|
||||
): Map<K, T[]>;
|
||||
}
|
||||
Vendored
+8
@@ -0,0 +1,8 @@
|
||||
/// <reference lib="es2023" />
|
||||
/// <reference lib="es2024.arraybuffer" />
|
||||
/// <reference lib="es2024.collection" />
|
||||
/// <reference lib="es2024.object" />
|
||||
/// <reference lib="es2024.promise" />
|
||||
/// <reference lib="es2024.regexp" />
|
||||
/// <reference lib="es2024.sharedmemory" />
|
||||
/// <reference lib="es2024.string" />
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
/// <reference lib="es2024" />
|
||||
/// <reference lib="dom" />
|
||||
/// <reference lib="webworker.importscripts" />
|
||||
/// <reference lib="scripthost" />
|
||||
/// <reference lib="dom.iterable" />
|
||||
/// <reference lib="dom.asynciterable" />
|
||||
@@ -1,3 +1,5 @@
|
||||
/// <reference lib="es2020.bigint" />
|
||||
|
||||
interface Atomics {
|
||||
/**
|
||||
* A non-blocking, asynchronous version of wait which is usable on the main thread.
|
||||
@@ -19,3 +21,30 @@ interface Atomics {
|
||||
*/
|
||||
waitAsync(typedArray: BigInt64Array, index: number, value: bigint, timeout?: number): { async: false; value: "not-equal" | "timed-out"; } | { async: true; value: Promise<"ok" | "timed-out">; };
|
||||
}
|
||||
|
||||
interface SharedArrayBuffer {
|
||||
/**
|
||||
* Returns true if this SharedArrayBuffer can be grown.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/growable)
|
||||
*/
|
||||
get growable(): number;
|
||||
|
||||
/**
|
||||
* If this SharedArrayBuffer is growable, returns the maximum byte length given during construction; returns the byte length if not.
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/maxByteLength)
|
||||
*/
|
||||
get maxByteLength(): number;
|
||||
|
||||
/**
|
||||
* Grows the SharedArrayBuffer to the specified size (in bytes).
|
||||
*
|
||||
* [MDN](https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/SharedArrayBuffer/grow)
|
||||
*/
|
||||
grow(newByteLength?: number): void;
|
||||
}
|
||||
|
||||
interface SharedArrayBufferConstructor {
|
||||
new (byteLength: number, options?: { maxByteLength?: number; }): SharedArrayBuffer;
|
||||
}
|
||||
Vendored
+1
-1
@@ -1683,7 +1683,7 @@ interface ArrayBuffer {
|
||||
/**
|
||||
* Returns a section of an ArrayBuffer.
|
||||
*/
|
||||
slice(begin: number, end?: number): ArrayBuffer;
|
||||
slice(begin?: number, end?: number): ArrayBuffer;
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Vendored
+1
-11
@@ -1,14 +1,4 @@
|
||||
interface MapConstructor {
|
||||
/**
|
||||
* Groups members of an iterable according to the return value of the passed callback.
|
||||
* @param items An iterable.
|
||||
* @param keySelector A callback which will be invoked for each item in items.
|
||||
*/
|
||||
groupBy<K, T>(
|
||||
items: Iterable<T>,
|
||||
keySelector: (item: T, index: number) => K,
|
||||
): Map<K, T[]>;
|
||||
}
|
||||
/// <reference lib="es2024.collection" />
|
||||
|
||||
interface ReadonlySetLike<T> {
|
||||
/**
|
||||
|
||||
Vendored
+1
-5
@@ -1,11 +1,7 @@
|
||||
/// <reference lib="es2023" />
|
||||
/// <reference lib="es2024" />
|
||||
/// <reference lib="esnext.intl" />
|
||||
/// <reference lib="esnext.decorators" />
|
||||
/// <reference lib="esnext.disposable" />
|
||||
/// <reference lib="esnext.promise" />
|
||||
/// <reference lib="esnext.object" />
|
||||
/// <reference lib="esnext.collection" />
|
||||
/// <reference lib="esnext.array" />
|
||||
/// <reference lib="esnext.regexp" />
|
||||
/// <reference lib="esnext.string" />
|
||||
/// <reference lib="esnext.iterator" />
|
||||
|
||||
+10
-5
@@ -11,6 +11,7 @@
|
||||
"es2021",
|
||||
"es2022",
|
||||
"es2023",
|
||||
"es2024",
|
||||
"esnext",
|
||||
// Host only
|
||||
"dom.generated",
|
||||
@@ -33,6 +34,7 @@
|
||||
"es2015.symbol.wellknown",
|
||||
"es2016.array.include",
|
||||
"es2016.intl",
|
||||
"es2017.arraybuffer",
|
||||
"es2017.date",
|
||||
"es2017.object",
|
||||
"es2017.sharedmemory",
|
||||
@@ -65,21 +67,23 @@
|
||||
"es2022.error",
|
||||
"es2022.intl",
|
||||
"es2022.object",
|
||||
"es2022.sharedmemory",
|
||||
"es2022.string",
|
||||
"es2022.regexp",
|
||||
"es2023.array",
|
||||
"es2023.collection",
|
||||
"es2023.intl",
|
||||
"es2024.arraybuffer",
|
||||
"es2024.collection",
|
||||
"es2024.object",
|
||||
"es2024.promise",
|
||||
"es2024.regexp",
|
||||
"es2024.sharedmemory",
|
||||
"es2024.string",
|
||||
"esnext.decorators",
|
||||
"esnext.intl",
|
||||
"esnext.disposable",
|
||||
"esnext.promise",
|
||||
"esnext.object",
|
||||
"esnext.collection",
|
||||
"esnext.array",
|
||||
"esnext.regexp",
|
||||
"esnext.string",
|
||||
"esnext.iterator",
|
||||
"decorators",
|
||||
"decorators.legacy",
|
||||
@@ -94,6 +98,7 @@
|
||||
"es2021.full",
|
||||
"es2022.full",
|
||||
"es2023.full",
|
||||
"es2024.full",
|
||||
"esnext.full"
|
||||
],
|
||||
"paths": {
|
||||
|
||||
@@ -3290,6 +3290,7 @@ export const enum ScriptTarget {
|
||||
ES2021 = "es2021",
|
||||
ES2022 = "es2022",
|
||||
ES2023 = "es2023",
|
||||
ES2024 = "es2024",
|
||||
ESNext = "esnext",
|
||||
JSON = "json",
|
||||
Latest = ESNext,
|
||||
|
||||
@@ -2551,6 +2551,7 @@ declare namespace ts {
|
||||
ES2021 = "es2021",
|
||||
ES2022 = "es2022",
|
||||
ES2023 = "es2023",
|
||||
ES2024 = "es2024",
|
||||
ESNext = "esnext",
|
||||
JSON = "json",
|
||||
Latest = "esnext",
|
||||
@@ -7184,6 +7185,7 @@ declare namespace ts {
|
||||
ES2021 = 8,
|
||||
ES2022 = 9,
|
||||
ES2023 = 10,
|
||||
ES2024 = 11,
|
||||
ESNext = 99,
|
||||
JSON = 100,
|
||||
Latest = 99,
|
||||
|
||||
+156
-104
@@ -31,6 +31,19 @@
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024' from '/.src/__lib_node_modules_lookup_lib.es2024.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2023' from '/.src/__lib_node_modules_lookup_lib.es2023.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -330,6 +343,45 @@
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -369,19 +421,6 @@
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -395,19 +434,6 @@
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -746,32 +772,6 @@
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -785,6 +785,19 @@
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2023/array' from '/.src/__lib_node_modules_lookup_lib.es2023.array.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023/array' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -824,6 +837,97 @@
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2023/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2024.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/arraybuffer' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/collection' from '/.src/__lib_node_modules_lookup_lib.es2024.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/collection' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/object' from '/.src/__lib_node_modules_lookup_lib.es2024.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/object' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/promise' from '/.src/__lib_node_modules_lookup_lib.es2024.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/promise' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/regexp' from '/.src/__lib_node_modules_lookup_lib.es2024.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/regexp' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2024.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/sharedmemory' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/string' from '/.src/__lib_node_modules_lookup_lib.es2024.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/intl' from '/.src/__lib_node_modules_lookup_lib.esnext.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -863,32 +967,6 @@
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/disposable' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/promise' from '/.src/__lib_node_modules_lookup_lib.esnext.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/promise' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/object' from '/.src/__lib_node_modules_lookup_lib.esnext.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/object' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/collection' from '/.src/__lib_node_modules_lookup_lib.esnext.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -915,32 +993,6 @@
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/array' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/regexp' from '/.src/__lib_node_modules_lookup_lib.esnext.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/regexp' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/string' from '/.src/__lib_node_modules_lookup_lib.esnext.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/iterator' from '/.src/__lib_node_modules_lookup_lib.esnext.iterator.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/iterator' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
+171
-111
@@ -39,6 +39,21 @@
|
||||
"======== Module name '@typescript/lib-esnext' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024' from '/.src/__lib_node_modules_lookup_lib.es2024.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023' from '/.src/__lib_node_modules_lookup_lib.es2023.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -384,6 +399,51 @@
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -429,21 +489,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -459,21 +504,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -864,19 +894,19 @@
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
@@ -894,21 +924,6 @@
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023/array' from '/.src/__lib_node_modules_lookup_lib.es2023.array.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023/array' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -954,6 +969,111 @@
|
||||
"======== Module name '@typescript/lib-es2023/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2024.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/collection' from '/.src/__lib_node_modules_lookup_lib.es2024.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/collection' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/object' from '/.src/__lib_node_modules_lookup_lib.es2024.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/promise' from '/.src/__lib_node_modules_lookup_lib.es2024.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/regexp' from '/.src/__lib_node_modules_lookup_lib.es2024.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2024.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/sharedmemory' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/string' from '/.src/__lib_node_modules_lookup_lib.es2024.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/intl' from '/.src/__lib_node_modules_lookup_lib.esnext.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -999,36 +1119,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/disposable' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/promise' from '/.src/__lib_node_modules_lookup_lib.esnext.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/object' from '/.src/__lib_node_modules_lookup_lib.esnext.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/collection' from '/.src/__lib_node_modules_lookup_lib.esnext.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -1059,36 +1149,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/array' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/regexp' from '/.src/__lib_node_modules_lookup_lib.esnext.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/string' from '/.src/__lib_node_modules_lookup_lib.esnext.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/iterator' from '/.src/__lib_node_modules_lookup_lib.esnext.iterator.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/iterator' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
@@ -0,0 +1,20 @@
|
||||
//// [tests/cases/conformance/expressions/optionalChaining/callChain/callChainWithSuper.ts] ////
|
||||
|
||||
//// [callChainWithSuper.ts]
|
||||
// GH#34952
|
||||
class Base { method?() {} }
|
||||
class Derived extends Base {
|
||||
method1() { return super.method?.(); }
|
||||
method2() { return super["method"]?.(); }
|
||||
}
|
||||
|
||||
//// [callChainWithSuper.js]
|
||||
"use strict";
|
||||
// GH#34952
|
||||
class Base {
|
||||
method() { }
|
||||
}
|
||||
class Derived extends Base {
|
||||
method1() { return super.method?.(); }
|
||||
method2() { return super["method"]?.(); }
|
||||
}
|
||||
+1
-1
@@ -10,4 +10,4 @@ WatchOptions::
|
||||
FileNames::
|
||||
es7,0.ts
|
||||
Errors::
|
||||
error TS6046: Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
error TS6046: Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
+1
-1
@@ -10,4 +10,4 @@ WatchOptions::
|
||||
FileNames::
|
||||
es7,0.ts
|
||||
Errors::
|
||||
error TS6046: Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
error TS6046: Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
+1
-1
@@ -7,4 +7,4 @@ FileNames::
|
||||
0.ts
|
||||
Errors::
|
||||
error TS6044: Compiler option 'target' expects an argument.
|
||||
error TS6046: Argument for '--target' option must be: 'es5', 'es6', 'es2015', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext'.
|
||||
error TS6046: Argument for '--target' option must be: 'es5', 'es6', 'es2015', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext'.
|
||||
|
||||
+1
-1
@@ -10,4 +10,4 @@ WatchOptions::
|
||||
FileNames::
|
||||
0.ts
|
||||
Errors::
|
||||
error TS6046: Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
error TS6046: Argument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
+1
-1
@@ -30,5 +30,5 @@ CompilerOptions::
|
||||
"configFilePath": "/apath/tsconfig.json"
|
||||
}
|
||||
Errors::
|
||||
[91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
[91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
|
||||
+1
-1
@@ -30,7 +30,7 @@ CompilerOptions::
|
||||
"configFilePath": "/apath/tsconfig.json"
|
||||
}
|
||||
Errors::
|
||||
[96mtsconfig.json[0m:[93m8[0m:[93m7[0m - [91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
[96mtsconfig.json[0m:[93m8[0m:[93m7[0m - [91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
[7m8[0m ""
|
||||
[7m [0m [91m ~~[0m
|
||||
|
||||
+1
-1
@@ -33,5 +33,5 @@ CompilerOptions::
|
||||
"configFilePath": "/apath/tsconfig.json"
|
||||
}
|
||||
Errors::
|
||||
[91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
[91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
|
||||
+1
-1
@@ -33,7 +33,7 @@ CompilerOptions::
|
||||
"configFilePath": "/apath/tsconfig.json"
|
||||
}
|
||||
Errors::
|
||||
[96mtsconfig.json[0m:[93m9[0m:[93m7[0m - [91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
[96mtsconfig.json[0m:[93m9[0m:[93m7[0m - [91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
[7m9[0m ""
|
||||
[7m [0m [91m ~~[0m
|
||||
|
||||
+1
-1
@@ -35,5 +35,5 @@ CompilerOptions::
|
||||
"configFilePath": "/apath/tsconfig.json"
|
||||
}
|
||||
Errors::
|
||||
[91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
[91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
|
||||
+1
-1
@@ -35,7 +35,7 @@ CompilerOptions::
|
||||
"configFilePath": "/apath/tsconfig.json"
|
||||
}
|
||||
Errors::
|
||||
[96mtsconfig.json[0m:[93m10[0m:[93m7[0m - [91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
[96mtsconfig.json[0m:[93m10[0m:[93m7[0m - [91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
[7m10[0m "incorrectLib"
|
||||
[7m [0m [91m ~~~~~~~~~~~~~~[0m
|
||||
|
||||
+1
-1
@@ -23,5 +23,5 @@ CompilerOptions::
|
||||
"configFilePath": "/apath/tsconfig.json"
|
||||
}
|
||||
Errors::
|
||||
[91merror[0m[90m TS6046: [0mArgument for '--target' option must be: 'es5', 'es6', 'es2015', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext'.
|
||||
[91merror[0m[90m TS6046: [0mArgument for '--target' option must be: 'es5', 'es6', 'es2015', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext'.
|
||||
|
||||
|
||||
+1
-1
@@ -23,7 +23,7 @@ CompilerOptions::
|
||||
"configFilePath": "/apath/tsconfig.json"
|
||||
}
|
||||
Errors::
|
||||
[96mtsconfig.json[0m:[93m3[0m:[93m15[0m - [91merror[0m[90m TS6046: [0mArgument for '--target' option must be: 'es5', 'es6', 'es2015', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext'.
|
||||
[96mtsconfig.json[0m:[93m3[0m:[93m15[0m - [91merror[0m[90m TS6046: [0mArgument for '--target' option must be: 'es5', 'es6', 'es2015', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext'.
|
||||
|
||||
[7m3[0m "target": "",
|
||||
[7m [0m [91m ~~[0m
|
||||
|
||||
+1
-1
@@ -30,5 +30,5 @@ CompilerOptions::
|
||||
"configFilePath": "/apath/tsconfig.json"
|
||||
}
|
||||
Errors::
|
||||
[91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
[91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
|
||||
+1
-1
@@ -30,7 +30,7 @@ CompilerOptions::
|
||||
"configFilePath": "/apath/tsconfig.json"
|
||||
}
|
||||
Errors::
|
||||
[96mtsconfig.json[0m:[93m8[0m:[93m7[0m - [91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.sharedmemory', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
[96mtsconfig.json[0m:[93m8[0m:[93m7[0m - [91merror[0m[90m TS6046: [0mArgument for '--lib' option must be: 'es5', 'es6', 'es2015', 'es7', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext', 'dom', 'dom.iterable', 'dom.asynciterable', 'webworker', 'webworker.importscripts', 'webworker.iterable', 'webworker.asynciterable', 'scripthost', 'es2015.core', 'es2015.collection', 'es2015.generator', 'es2015.iterable', 'es2015.promise', 'es2015.proxy', 'es2015.reflect', 'es2015.symbol', 'es2015.symbol.wellknown', 'es2016.array.include', 'es2016.intl', 'es2017.arraybuffer', 'es2017.date', 'es2017.object', 'es2017.sharedmemory', 'es2017.string', 'es2017.intl', 'es2017.typedarrays', 'es2018.asyncgenerator', 'es2018.asynciterable', 'es2018.intl', 'es2018.promise', 'es2018.regexp', 'es2019.array', 'es2019.object', 'es2019.string', 'es2019.symbol', 'es2019.intl', 'es2020.bigint', 'es2020.date', 'es2020.promise', 'es2020.sharedmemory', 'es2020.string', 'es2020.symbol.wellknown', 'es2020.intl', 'es2020.number', 'es2021.promise', 'es2021.string', 'es2021.weakref', 'es2021.intl', 'es2022.array', 'es2022.error', 'es2022.intl', 'es2022.object', 'es2022.string', 'es2022.regexp', 'es2023.array', 'es2023.collection', 'es2023.intl', 'es2024.arraybuffer', 'es2024.collection', 'es2024.object', 'es2024.promise', 'es2024.regexp', 'es2024.sharedmemory', 'es2024.string', 'esnext.array', 'esnext.collection', 'esnext.symbol', 'esnext.asynciterable', 'esnext.intl', 'esnext.disposable', 'esnext.bigint', 'esnext.string', 'esnext.promise', 'esnext.weakref', 'esnext.decorators', 'esnext.object', 'esnext.regexp', 'esnext.iterator', 'decorators', 'decorators.legacy'.
|
||||
|
||||
[7m8[0m " "
|
||||
[7m [0m [91m ~~~~~[0m
|
||||
|
||||
+1
-1
@@ -47,7 +47,7 @@ Errors::
|
||||
[7m [0m [91m~~~[0m
|
||||
[7m 19[0m }
|
||||
[7m [0m [91m~[0m
|
||||
[96mtsconfig.json[0m:[93m3[0m:[93m15[0m - [91merror[0m[90m TS6046: [0mArgument for '--target' option must be: 'es5', 'es6', 'es2015', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'esnext'.
|
||||
[96mtsconfig.json[0m:[93m3[0m:[93m15[0m - [91merror[0m[90m TS6046: [0mArgument for '--target' option must be: 'es5', 'es6', 'es2015', 'es2016', 'es2017', 'es2018', 'es2019', 'es2020', 'es2021', 'es2022', 'es2023', 'es2024', 'esnext'.
|
||||
|
||||
[7m3[0m "target": "<%- options.useTsWithBabel ? 'esnext' : 'es5' %>",
|
||||
[7m [0m [91m ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~[0m
|
||||
|
||||
@@ -0,0 +1,31 @@
|
||||
es2024SharedMemory.ts(10,34): error TS2550: Property 'waitAsync' does not exist on type 'Atomics'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2024' or later.
|
||||
es2024SharedMemory.ts(11,52): error TS2550: Property 'waitAsync' does not exist on type 'Atomics'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2024' or later.
|
||||
|
||||
|
||||
==== es2024SharedMemory.ts (2 errors) ====
|
||||
// ES2024 Atomics.waitAsync was included in the ES2022 type file due to a mistake.
|
||||
// This test file checks if it fails successfully.
|
||||
// https://github.com/microsoft/TypeScript/pull/58573#issuecomment-2119347142
|
||||
|
||||
const sab = new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 1024);
|
||||
const int32 = new Int32Array(sab);
|
||||
const sab64 = new SharedArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT * 1024);
|
||||
const int64 = new BigInt64Array(sab64);
|
||||
const waitValue = Atomics.wait(int32, 0, 0);
|
||||
const { async, value } = Atomics.waitAsync(int32, 0, 0);
|
||||
~~~~~~~~~
|
||||
!!! error TS2550: Property 'waitAsync' does not exist on type 'Atomics'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2024' or later.
|
||||
const { async: async64, value: value64 } = Atomics.waitAsync(int64, 0, BigInt(0));
|
||||
~~~~~~~~~
|
||||
!!! error TS2550: Property 'waitAsync' does not exist on type 'Atomics'. Do you need to change your target library? Try changing the 'lib' compiler option to 'es2024' or later.
|
||||
|
||||
const main = async () => {
|
||||
if (async) {
|
||||
await value;
|
||||
}
|
||||
if (async64) {
|
||||
await value64;
|
||||
}
|
||||
}
|
||||
main();
|
||||
|
||||
+29
-31
@@ -1,72 +1,70 @@
|
||||
//// [tests/cases/conformance/es2022/es2022SharedMemory.ts] ////
|
||||
//// [tests/cases/conformance/es2022/es2024SharedMemory.ts] ////
|
||||
|
||||
=== es2024SharedMemory.ts ===
|
||||
// ES2024 Atomics.waitAsync was included in the ES2022 type file due to a mistake.
|
||||
// This test file checks if it fails successfully.
|
||||
// https://github.com/microsoft/TypeScript/pull/58573#issuecomment-2119347142
|
||||
|
||||
=== es2022SharedMemory.ts ===
|
||||
const sab = new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 1024);
|
||||
>sab : Symbol(sab, Decl(es2022SharedMemory.ts, 0, 5))
|
||||
>sab : Symbol(sab, Decl(es2024SharedMemory.ts, 4, 5))
|
||||
>SharedArrayBuffer : Symbol(SharedArrayBuffer, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --))
|
||||
>Int32Array.BYTES_PER_ELEMENT : Symbol(Int32ArrayConstructor.BYTES_PER_ELEMENT, Decl(lib.es5.d.ts, --, --))
|
||||
>Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.core.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --) ... and 2 more)
|
||||
>BYTES_PER_ELEMENT : Symbol(Int32ArrayConstructor.BYTES_PER_ELEMENT, Decl(lib.es5.d.ts, --, --))
|
||||
|
||||
const int32 = new Int32Array(sab);
|
||||
>int32 : Symbol(int32, Decl(es2022SharedMemory.ts, 1, 5))
|
||||
>int32 : Symbol(int32, Decl(es2024SharedMemory.ts, 5, 5))
|
||||
>Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.core.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --) ... and 2 more)
|
||||
>sab : Symbol(sab, Decl(es2022SharedMemory.ts, 0, 5))
|
||||
>sab : Symbol(sab, Decl(es2024SharedMemory.ts, 4, 5))
|
||||
|
||||
const sab64 = new SharedArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT * 1024);
|
||||
>sab64 : Symbol(sab64, Decl(es2022SharedMemory.ts, 2, 5))
|
||||
>sab64 : Symbol(sab64, Decl(es2024SharedMemory.ts, 6, 5))
|
||||
>SharedArrayBuffer : Symbol(SharedArrayBuffer, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --))
|
||||
>BigInt64Array.BYTES_PER_ELEMENT : Symbol(BigInt64ArrayConstructor.BYTES_PER_ELEMENT, Decl(lib.es2020.bigint.d.ts, --, --))
|
||||
>BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2022.array.d.ts, --, --))
|
||||
>BYTES_PER_ELEMENT : Symbol(BigInt64ArrayConstructor.BYTES_PER_ELEMENT, Decl(lib.es2020.bigint.d.ts, --, --))
|
||||
|
||||
const int64 = new BigInt64Array(sab64);
|
||||
>int64 : Symbol(int64, Decl(es2022SharedMemory.ts, 3, 5))
|
||||
>int64 : Symbol(int64, Decl(es2024SharedMemory.ts, 7, 5))
|
||||
>BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2022.array.d.ts, --, --))
|
||||
>sab64 : Symbol(sab64, Decl(es2022SharedMemory.ts, 2, 5))
|
||||
>sab64 : Symbol(sab64, Decl(es2024SharedMemory.ts, 6, 5))
|
||||
|
||||
const waitValue = Atomics.wait(int32, 0, 0);
|
||||
>waitValue : Symbol(waitValue, Decl(es2022SharedMemory.ts, 4, 5))
|
||||
>waitValue : Symbol(waitValue, Decl(es2024SharedMemory.ts, 8, 5))
|
||||
>Atomics.wait : Symbol(Atomics.wait, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --))
|
||||
>Atomics : Symbol(Atomics, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --), Decl(lib.es2022.sharedmemory.d.ts, --, --))
|
||||
>Atomics : Symbol(Atomics, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --))
|
||||
>wait : Symbol(Atomics.wait, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --))
|
||||
>int32 : Symbol(int32, Decl(es2022SharedMemory.ts, 1, 5))
|
||||
>int32 : Symbol(int32, Decl(es2024SharedMemory.ts, 5, 5))
|
||||
|
||||
const { async, value } = Atomics.waitAsync(int32, 0, 0);
|
||||
>async : Symbol(async, Decl(es2022SharedMemory.ts, 5, 7))
|
||||
>value : Symbol(value, Decl(es2022SharedMemory.ts, 5, 14))
|
||||
>Atomics.waitAsync : Symbol(Atomics.waitAsync, Decl(lib.es2022.sharedmemory.d.ts, --, --), Decl(lib.es2022.sharedmemory.d.ts, --, --))
|
||||
>Atomics : Symbol(Atomics, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --), Decl(lib.es2022.sharedmemory.d.ts, --, --))
|
||||
>waitAsync : Symbol(Atomics.waitAsync, Decl(lib.es2022.sharedmemory.d.ts, --, --), Decl(lib.es2022.sharedmemory.d.ts, --, --))
|
||||
>int32 : Symbol(int32, Decl(es2022SharedMemory.ts, 1, 5))
|
||||
>async : Symbol(async, Decl(es2024SharedMemory.ts, 9, 7))
|
||||
>value : Symbol(value, Decl(es2024SharedMemory.ts, 9, 14))
|
||||
>Atomics : Symbol(Atomics, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --))
|
||||
>int32 : Symbol(int32, Decl(es2024SharedMemory.ts, 5, 5))
|
||||
|
||||
const { async: async64, value: value64 } = Atomics.waitAsync(int64, 0, BigInt(0));
|
||||
>async : Symbol(async, Decl(lib.es2022.sharedmemory.d.ts, --, --), Decl(lib.es2022.sharedmemory.d.ts, --, --))
|
||||
>async64 : Symbol(async64, Decl(es2022SharedMemory.ts, 6, 7))
|
||||
>value : Symbol(value, Decl(lib.es2022.sharedmemory.d.ts, --, --), Decl(lib.es2022.sharedmemory.d.ts, --, --))
|
||||
>value64 : Symbol(value64, Decl(es2022SharedMemory.ts, 6, 23))
|
||||
>Atomics.waitAsync : Symbol(Atomics.waitAsync, Decl(lib.es2022.sharedmemory.d.ts, --, --), Decl(lib.es2022.sharedmemory.d.ts, --, --))
|
||||
>Atomics : Symbol(Atomics, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --), Decl(lib.es2022.sharedmemory.d.ts, --, --))
|
||||
>waitAsync : Symbol(Atomics.waitAsync, Decl(lib.es2022.sharedmemory.d.ts, --, --), Decl(lib.es2022.sharedmemory.d.ts, --, --))
|
||||
>int64 : Symbol(int64, Decl(es2022SharedMemory.ts, 3, 5))
|
||||
>async64 : Symbol(async64, Decl(es2024SharedMemory.ts, 10, 7))
|
||||
>value64 : Symbol(value64, Decl(es2024SharedMemory.ts, 10, 23))
|
||||
>Atomics : Symbol(Atomics, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --))
|
||||
>int64 : Symbol(int64, Decl(es2024SharedMemory.ts, 7, 5))
|
||||
>BigInt : Symbol(BigInt, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint.d.ts, --, --))
|
||||
|
||||
const main = async () => {
|
||||
>main : Symbol(main, Decl(es2022SharedMemory.ts, 8, 5))
|
||||
>main : Symbol(main, Decl(es2024SharedMemory.ts, 12, 5))
|
||||
|
||||
if (async) {
|
||||
>async : Symbol(async, Decl(es2022SharedMemory.ts, 5, 7))
|
||||
>async : Symbol(async, Decl(es2024SharedMemory.ts, 9, 7))
|
||||
|
||||
await value;
|
||||
>value : Symbol(value, Decl(es2022SharedMemory.ts, 5, 14))
|
||||
>value : Symbol(value, Decl(es2024SharedMemory.ts, 9, 14))
|
||||
}
|
||||
if (async64) {
|
||||
>async64 : Symbol(async64, Decl(es2022SharedMemory.ts, 6, 7))
|
||||
>async64 : Symbol(async64, Decl(es2024SharedMemory.ts, 10, 7))
|
||||
|
||||
await value64;
|
||||
>value64 : Symbol(value64, Decl(es2022SharedMemory.ts, 6, 23))
|
||||
>value64 : Symbol(value64, Decl(es2024SharedMemory.ts, 10, 23))
|
||||
}
|
||||
}
|
||||
main();
|
||||
>main : Symbol(main, Decl(es2022SharedMemory.ts, 8, 5))
|
||||
>main : Symbol(main, Decl(es2024SharedMemory.ts, 12, 5))
|
||||
|
||||
@@ -0,0 +1,162 @@
|
||||
//// [tests/cases/conformance/es2022/es2024SharedMemory.ts] ////
|
||||
|
||||
=== es2024SharedMemory.ts ===
|
||||
// ES2024 Atomics.waitAsync was included in the ES2022 type file due to a mistake.
|
||||
// This test file checks if it fails successfully.
|
||||
// https://github.com/microsoft/TypeScript/pull/58573#issuecomment-2119347142
|
||||
|
||||
const sab = new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 1024);
|
||||
>sab : SharedArrayBuffer
|
||||
> : ^^^^^^^^^^^^^^^^^
|
||||
>new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 1024) : SharedArrayBuffer
|
||||
> : ^^^^^^^^^^^^^^^^^
|
||||
>SharedArrayBuffer : SharedArrayBufferConstructor
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>Int32Array.BYTES_PER_ELEMENT * 1024 : number
|
||||
> : ^^^^^^
|
||||
>Int32Array.BYTES_PER_ELEMENT : number
|
||||
> : ^^^^^^
|
||||
>Int32Array : Int32ArrayConstructor
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^
|
||||
>BYTES_PER_ELEMENT : number
|
||||
> : ^^^^^^
|
||||
>1024 : 1024
|
||||
> : ^^^^
|
||||
|
||||
const int32 = new Int32Array(sab);
|
||||
>int32 : Int32Array<SharedArrayBuffer>
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>new Int32Array(sab) : Int32Array<SharedArrayBuffer>
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>Int32Array : Int32ArrayConstructor
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^
|
||||
>sab : SharedArrayBuffer
|
||||
> : ^^^^^^^^^^^^^^^^^
|
||||
|
||||
const sab64 = new SharedArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT * 1024);
|
||||
>sab64 : SharedArrayBuffer
|
||||
> : ^^^^^^^^^^^^^^^^^
|
||||
>new SharedArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT * 1024) : SharedArrayBuffer
|
||||
> : ^^^^^^^^^^^^^^^^^
|
||||
>SharedArrayBuffer : SharedArrayBufferConstructor
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>BigInt64Array.BYTES_PER_ELEMENT * 1024 : number
|
||||
> : ^^^^^^
|
||||
>BigInt64Array.BYTES_PER_ELEMENT : number
|
||||
> : ^^^^^^
|
||||
>BigInt64Array : BigInt64ArrayConstructor
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>BYTES_PER_ELEMENT : number
|
||||
> : ^^^^^^
|
||||
>1024 : 1024
|
||||
> : ^^^^
|
||||
|
||||
const int64 = new BigInt64Array(sab64);
|
||||
>int64 : BigInt64Array<SharedArrayBuffer>
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>new BigInt64Array(sab64) : BigInt64Array<SharedArrayBuffer>
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>BigInt64Array : BigInt64ArrayConstructor
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>sab64 : SharedArrayBuffer
|
||||
> : ^^^^^^^^^^^^^^^^^
|
||||
|
||||
const waitValue = Atomics.wait(int32, 0, 0);
|
||||
>waitValue : "ok" | "not-equal" | "timed-out"
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>Atomics.wait(int32, 0, 0) : "ok" | "not-equal" | "timed-out"
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>Atomics.wait : { (typedArray: Int32Array<ArrayBufferLike>, index: number, value: number, timeout?: number): "ok" | "not-equal" | "timed-out"; (typedArray: BigInt64Array<ArrayBufferLike>, index: number, value: bigint, timeout?: number): "ok" | "not-equal" | "timed-out"; }
|
||||
> : ^^^ ^^ ^^ ^^ ^^ ^^ ^^ ^^^ ^^^ ^^^ ^^ ^^ ^^ ^^ ^^ ^^ ^^^ ^^^ ^^^
|
||||
>Atomics : Atomics
|
||||
> : ^^^^^^^
|
||||
>wait : { (typedArray: Int32Array<ArrayBufferLike>, index: number, value: number, timeout?: number): "ok" | "not-equal" | "timed-out"; (typedArray: BigInt64Array<ArrayBufferLike>, index: number, value: bigint, timeout?: number): "ok" | "not-equal" | "timed-out"; }
|
||||
> : ^^^ ^^ ^^ ^^ ^^ ^^ ^^ ^^^ ^^^ ^^^ ^^ ^^ ^^ ^^ ^^ ^^ ^^^ ^^^ ^^^
|
||||
>int32 : Int32Array<SharedArrayBuffer>
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>0 : 0
|
||||
> : ^
|
||||
>0 : 0
|
||||
> : ^
|
||||
|
||||
const { async, value } = Atomics.waitAsync(int32, 0, 0);
|
||||
>async : any
|
||||
> : ^^^
|
||||
>value : any
|
||||
> : ^^^
|
||||
>Atomics.waitAsync(int32, 0, 0) : any
|
||||
> : ^^^
|
||||
>Atomics.waitAsync : any
|
||||
> : ^^^
|
||||
>Atomics : Atomics
|
||||
> : ^^^^^^^
|
||||
>waitAsync : any
|
||||
> : ^^^
|
||||
>int32 : Int32Array<SharedArrayBuffer>
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>0 : 0
|
||||
> : ^
|
||||
>0 : 0
|
||||
> : ^
|
||||
|
||||
const { async: async64, value: value64 } = Atomics.waitAsync(int64, 0, BigInt(0));
|
||||
>async : any
|
||||
> : ^^^
|
||||
>async64 : any
|
||||
> : ^^^
|
||||
>value : any
|
||||
> : ^^^
|
||||
>value64 : any
|
||||
> : ^^^
|
||||
>Atomics.waitAsync(int64, 0, BigInt(0)) : any
|
||||
> : ^^^
|
||||
>Atomics.waitAsync : any
|
||||
> : ^^^
|
||||
>Atomics : Atomics
|
||||
> : ^^^^^^^
|
||||
>waitAsync : any
|
||||
> : ^^^
|
||||
>int64 : BigInt64Array<SharedArrayBuffer>
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>0 : 0
|
||||
> : ^
|
||||
>BigInt(0) : bigint
|
||||
> : ^^^^^^
|
||||
>BigInt : BigIntConstructor
|
||||
> : ^^^^^^^^^^^^^^^^^
|
||||
>0 : 0
|
||||
> : ^
|
||||
|
||||
const main = async () => {
|
||||
>main : () => Promise<void>
|
||||
> : ^^^^^^^^^^^^^^^^^^^
|
||||
>async () => { if (async) { await value; } if (async64) { await value64; }} : () => Promise<void>
|
||||
> : ^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
if (async) {
|
||||
>async : any
|
||||
> : ^^^
|
||||
|
||||
await value;
|
||||
>await value : any
|
||||
> : ^^^
|
||||
>value : any
|
||||
> : ^^^
|
||||
}
|
||||
if (async64) {
|
||||
>async64 : any
|
||||
> : ^^^
|
||||
|
||||
await value64;
|
||||
>await value64 : any
|
||||
> : ^^^
|
||||
>value64 : any
|
||||
> : ^^^
|
||||
}
|
||||
}
|
||||
main();
|
||||
>main() : Promise<void>
|
||||
> : ^^^^^^^^^^^^^
|
||||
>main : () => Promise<void>
|
||||
> : ^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
@@ -3,17 +3,17 @@
|
||||
=== mapGroupBy.ts ===
|
||||
const basic = Map.groupBy([0, 2, 8], x => x < 5 ? 'small' : 'large');
|
||||
>basic : Symbol(basic, Decl(mapGroupBy.ts, 0, 5))
|
||||
>Map.groupBy : Symbol(MapConstructor.groupBy, Decl(lib.esnext.collection.d.ts, --, --))
|
||||
>Map.groupBy : Symbol(MapConstructor.groupBy, Decl(lib.es2024.collection.d.ts, --, --))
|
||||
>Map : Symbol(Map, Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
|
||||
>groupBy : Symbol(MapConstructor.groupBy, Decl(lib.esnext.collection.d.ts, --, --))
|
||||
>groupBy : Symbol(MapConstructor.groupBy, Decl(lib.es2024.collection.d.ts, --, --))
|
||||
>x : Symbol(x, Decl(mapGroupBy.ts, 0, 36))
|
||||
>x : Symbol(x, Decl(mapGroupBy.ts, 0, 36))
|
||||
|
||||
const chars = Map.groupBy('a string', c => c);
|
||||
>chars : Symbol(chars, Decl(mapGroupBy.ts, 2, 5))
|
||||
>Map.groupBy : Symbol(MapConstructor.groupBy, Decl(lib.esnext.collection.d.ts, --, --))
|
||||
>Map.groupBy : Symbol(MapConstructor.groupBy, Decl(lib.es2024.collection.d.ts, --, --))
|
||||
>Map : Symbol(Map, Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
|
||||
>groupBy : Symbol(MapConstructor.groupBy, Decl(lib.esnext.collection.d.ts, --, --))
|
||||
>groupBy : Symbol(MapConstructor.groupBy, Decl(lib.es2024.collection.d.ts, --, --))
|
||||
>c : Symbol(c, Decl(mapGroupBy.ts, 2, 37))
|
||||
>c : Symbol(c, Decl(mapGroupBy.ts, 2, 37))
|
||||
|
||||
@@ -30,9 +30,9 @@ const employees: Set<Employee> = new Set();
|
||||
|
||||
const byRole = Map.groupBy(employees, x => x.role);
|
||||
>byRole : Symbol(byRole, Decl(mapGroupBy.ts, 6, 5))
|
||||
>Map.groupBy : Symbol(MapConstructor.groupBy, Decl(lib.esnext.collection.d.ts, --, --))
|
||||
>Map.groupBy : Symbol(MapConstructor.groupBy, Decl(lib.es2024.collection.d.ts, --, --))
|
||||
>Map : Symbol(Map, Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
|
||||
>groupBy : Symbol(MapConstructor.groupBy, Decl(lib.esnext.collection.d.ts, --, --))
|
||||
>groupBy : Symbol(MapConstructor.groupBy, Decl(lib.es2024.collection.d.ts, --, --))
|
||||
>employees : Symbol(employees, Decl(mapGroupBy.ts, 5, 5))
|
||||
>x : Symbol(x, Decl(mapGroupBy.ts, 6, 37))
|
||||
>x.role : Symbol(role, Decl(mapGroupBy.ts, 4, 31))
|
||||
@@ -41,9 +41,9 @@ const byRole = Map.groupBy(employees, x => x.role);
|
||||
|
||||
const byNonKey = Map.groupBy(employees, x => x);
|
||||
>byNonKey : Symbol(byNonKey, Decl(mapGroupBy.ts, 8, 5))
|
||||
>Map.groupBy : Symbol(MapConstructor.groupBy, Decl(lib.esnext.collection.d.ts, --, --))
|
||||
>Map.groupBy : Symbol(MapConstructor.groupBy, Decl(lib.es2024.collection.d.ts, --, --))
|
||||
>Map : Symbol(Map, Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.collection.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --))
|
||||
>groupBy : Symbol(MapConstructor.groupBy, Decl(lib.esnext.collection.d.ts, --, --))
|
||||
>groupBy : Symbol(MapConstructor.groupBy, Decl(lib.es2024.collection.d.ts, --, --))
|
||||
>employees : Symbol(employees, Decl(mapGroupBy.ts, 5, 5))
|
||||
>x : Symbol(x, Decl(mapGroupBy.ts, 8, 39))
|
||||
>x : Symbol(x, Decl(mapGroupBy.ts, 8, 39))
|
||||
|
||||
@@ -48,6 +48,18 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024' from '/.src/__lib_node_modules_lookup_lib.es2024.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2023' from '/.src/__lib_node_modules_lookup_lib.es2023.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -324,6 +336,42 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -360,18 +408,6 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -384,18 +420,6 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -708,30 +732,6 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -744,6 +744,18 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2023/array' from '/.src/__lib_node_modules_lookup_lib.es2023.array.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023/array' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -780,6 +792,90 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2023/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2024.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/arraybuffer' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/collection' from '/.src/__lib_node_modules_lookup_lib.es2024.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/collection' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/object' from '/.src/__lib_node_modules_lookup_lib.es2024.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/object' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/promise' from '/.src/__lib_node_modules_lookup_lib.es2024.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/promise' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/regexp' from '/.src/__lib_node_modules_lookup_lib.es2024.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/regexp' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2024.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/sharedmemory' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/string' from '/.src/__lib_node_modules_lookup_lib.es2024.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/intl' from '/.src/__lib_node_modules_lookup_lib.esnext.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -816,30 +912,6 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/disposable' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/promise' from '/.src/__lib_node_modules_lookup_lib.esnext.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/promise' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/object' from '/.src/__lib_node_modules_lookup_lib.esnext.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/object' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/collection' from '/.src/__lib_node_modules_lookup_lib.esnext.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -864,30 +936,6 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/array' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/regexp' from '/.src/__lib_node_modules_lookup_lib.esnext.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/regexp' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/string' from '/.src/__lib_node_modules_lookup_lib.esnext.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/iterator' from '/.src/__lib_node_modules_lookup_lib.esnext.iterator.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/iterator' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
@@ -38,6 +38,18 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024' from '/.src/__lib_node_modules_lookup_lib.es2024.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"File '/node_modules/@types/typescript__lib-es2024.d.ts' does not exist.",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2023' from '/.src/__lib_node_modules_lookup_lib.es2023.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -302,6 +314,39 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -335,17 +380,6 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -357,17 +391,6 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -654,28 +677,6 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -687,6 +688,17 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/string'",
|
||||
"Loading module '@typescript/lib-es2022/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2023/array' from '/.src/__lib_node_modules_lookup_lib.es2023.array.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023/array' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -720,6 +732,83 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2023/intl' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2024.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/arraybuffer' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/collection' from '/.src/__lib_node_modules_lookup_lib.es2024.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/collection' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/object' from '/.src/__lib_node_modules_lookup_lib.es2024.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/object' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/promise' from '/.src/__lib_node_modules_lookup_lib.es2024.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/promise' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/regexp' from '/.src/__lib_node_modules_lookup_lib.es2024.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/regexp' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2024.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/sharedmemory' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-es2024/string' from '/.src/__lib_node_modules_lookup_lib.es2024.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/intl' from '/.src/__lib_node_modules_lookup_lib.esnext.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -753,28 +842,6 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/disposable' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/promise' from '/.src/__lib_node_modules_lookup_lib.esnext.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/promise' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/object' from '/.src/__lib_node_modules_lookup_lib.esnext.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/object' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/collection' from '/.src/__lib_node_modules_lookup_lib.esnext.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -797,28 +864,6 @@
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/array' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/regexp' from '/.src/__lib_node_modules_lookup_lib.esnext.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/regexp' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/string' from '/.src/__lib_node_modules_lookup_lib.esnext.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/string' was not resolved. ========",
|
||||
"======== Resolving module '@typescript/lib-esnext/iterator' from '/.src/__lib_node_modules_lookup_lib.esnext.iterator.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/iterator' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
@@ -369,6 +369,45 @@
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -408,19 +447,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -434,19 +460,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -785,17 +798,17 @@
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
@@ -811,19 +824,6 @@
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-dom' from '/.src/__lib_node_modules_lookup_lib.dom.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-dom' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
+48
-48
@@ -517,6 +517,48 @@
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -559,20 +601,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -587,20 +615,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -965,18 +979,18 @@
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
@@ -993,20 +1007,6 @@
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-dom' from '/.src/__lib_node_modules_lookup_lib.dom.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-dom' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
+160
-104
@@ -223,6 +223,20 @@
|
||||
"======== Module name '@typescript/lib-esnext' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024' from '/.src/__lib_node_modules_lookup_lib.es2024.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023' from '/.src/__lib_node_modules_lookup_lib.es2023.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -545,6 +559,48 @@
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -587,20 +643,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -615,20 +657,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -993,18 +1021,18 @@
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
@@ -1021,20 +1049,6 @@
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023/array' from '/.src/__lib_node_modules_lookup_lib.es2023.array.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023/array' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -1077,6 +1091,104 @@
|
||||
"======== Module name '@typescript/lib-es2023/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2024.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/collection' from '/.src/__lib_node_modules_lookup_lib.es2024.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/collection' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/object' from '/.src/__lib_node_modules_lookup_lib.es2024.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/promise' from '/.src/__lib_node_modules_lookup_lib.es2024.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/regexp' from '/.src/__lib_node_modules_lookup_lib.es2024.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2024.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/sharedmemory' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/string' from '/.src/__lib_node_modules_lookup_lib.es2024.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/intl' from '/.src/__lib_node_modules_lookup_lib.esnext.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -1119,34 +1231,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/disposable' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/promise' from '/.src/__lib_node_modules_lookup_lib.esnext.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/object' from '/.src/__lib_node_modules_lookup_lib.esnext.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/collection' from '/.src/__lib_node_modules_lookup_lib.esnext.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -1175,34 +1259,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/array' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/regexp' from '/.src/__lib_node_modules_lookup_lib.esnext.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/string' from '/.src/__lib_node_modules_lookup_lib.esnext.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Directory '/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/iterator' from '/.src/__lib_node_modules_lookup_lib.esnext.iterator.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/iterator' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
@@ -413,6 +413,51 @@
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -458,21 +503,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -488,21 +518,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -893,19 +908,19 @@
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
@@ -923,21 +938,6 @@
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-dom' from '/.src/__lib_node_modules_lookup_lib.dom.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-dom' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
@@ -98,6 +98,21 @@
|
||||
"======== Module name '@typescript/lib-esnext' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024' from '/.src/__lib_node_modules_lookup_lib.es2024.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023' from '/.src/__lib_node_modules_lookup_lib.es2023.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -443,6 +458,51 @@
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -488,21 +548,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -518,21 +563,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -923,19 +953,19 @@
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
@@ -953,21 +983,6 @@
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023/array' from '/.src/__lib_node_modules_lookup_lib.es2023.array.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023/array' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -1013,6 +1028,111 @@
|
||||
"======== Module name '@typescript/lib-es2023/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2024.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/collection' from '/.src/__lib_node_modules_lookup_lib.es2024.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/collection' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/object' from '/.src/__lib_node_modules_lookup_lib.es2024.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/promise' from '/.src/__lib_node_modules_lookup_lib.es2024.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/regexp' from '/.src/__lib_node_modules_lookup_lib.es2024.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2024.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/sharedmemory' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/string' from '/.src/__lib_node_modules_lookup_lib.es2024.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/intl' from '/.src/__lib_node_modules_lookup_lib.esnext.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -1058,36 +1178,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/disposable' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/promise' from '/.src/__lib_node_modules_lookup_lib.esnext.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/object' from '/.src/__lib_node_modules_lookup_lib.esnext.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/collection' from '/.src/__lib_node_modules_lookup_lib.esnext.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -1118,36 +1208,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/array' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/regexp' from '/.src/__lib_node_modules_lookup_lib.esnext.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/string' from '/.src/__lib_node_modules_lookup_lib.esnext.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/.src/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/iterator' from '/.src/__lib_node_modules_lookup_lib.esnext.iterator.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/iterator' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
+48
-48
@@ -498,6 +498,48 @@
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -540,20 +582,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -568,20 +596,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -946,18 +960,18 @@
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
@@ -974,20 +988,6 @@
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-dom' from '/.src/__lib_node_modules_lookup_lib.dom.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-dom' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
+160
-104
@@ -204,6 +204,20 @@
|
||||
"======== Module name '@typescript/lib-esnext' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024' from '/.src/__lib_node_modules_lookup_lib.es2024.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023' from '/.src/__lib_node_modules_lookup_lib.es2023.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -526,6 +540,48 @@
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -568,20 +624,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -596,20 +638,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -974,18 +1002,18 @@
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
@@ -1002,20 +1030,6 @@
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023/array' from '/.src/__lib_node_modules_lookup_lib.es2023.array.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023/array' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -1058,6 +1072,104 @@
|
||||
"======== Module name '@typescript/lib-es2023/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2024.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/collection' from '/.src/__lib_node_modules_lookup_lib.es2024.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/collection' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/object' from '/.src/__lib_node_modules_lookup_lib.es2024.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/promise' from '/.src/__lib_node_modules_lookup_lib.es2024.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/regexp' from '/.src/__lib_node_modules_lookup_lib.es2024.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2024.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/sharedmemory' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/string' from '/.src/__lib_node_modules_lookup_lib.es2024.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/intl' from '/.src/__lib_node_modules_lookup_lib.esnext.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -1100,34 +1212,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/disposable' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/promise' from '/.src/__lib_node_modules_lookup_lib.esnext.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/object' from '/.src/__lib_node_modules_lookup_lib.esnext.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/collection' from '/.src/__lib_node_modules_lookup_lib.esnext.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -1156,34 +1240,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/array' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/regexp' from '/.src/__lib_node_modules_lookup_lib.esnext.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/string' from '/.src/__lib_node_modules_lookup_lib.esnext.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Directory '/.src/node_modules/@types' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/iterator' from '/.src/__lib_node_modules_lookup_lib.esnext.iterator.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/iterator' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
@@ -13,5 +13,5 @@ objectGroupBy.ts(9,49): error TS2322: Type 'Employee' is not assignable to type
|
||||
const byNonKey = Object.groupBy(employees, x => x);
|
||||
~
|
||||
!!! error TS2322: Type 'Employee' is not assignable to type 'PropertyKey'.
|
||||
!!! related TS6502 lib.esnext.object.d.ts:--:--: The expected type comes from the return type of this signature.
|
||||
!!! related TS6502 lib.es2024.object.d.ts:--:--: The expected type comes from the return type of this signature.
|
||||
|
||||
@@ -3,17 +3,17 @@
|
||||
=== objectGroupBy.ts ===
|
||||
const basic = Object.groupBy([0, 2, 8], x => x < 5 ? 'small' : 'large');
|
||||
>basic : Symbol(basic, Decl(objectGroupBy.ts, 0, 5))
|
||||
>Object.groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.esnext.object.d.ts, --, --))
|
||||
>Object.groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.es2024.object.d.ts, --, --))
|
||||
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
|
||||
>groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.esnext.object.d.ts, --, --))
|
||||
>groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.es2024.object.d.ts, --, --))
|
||||
>x : Symbol(x, Decl(objectGroupBy.ts, 0, 39))
|
||||
>x : Symbol(x, Decl(objectGroupBy.ts, 0, 39))
|
||||
|
||||
const chars = Object.groupBy('a string', c => c);
|
||||
>chars : Symbol(chars, Decl(objectGroupBy.ts, 2, 5))
|
||||
>Object.groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.esnext.object.d.ts, --, --))
|
||||
>Object.groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.es2024.object.d.ts, --, --))
|
||||
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
|
||||
>groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.esnext.object.d.ts, --, --))
|
||||
>groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.es2024.object.d.ts, --, --))
|
||||
>c : Symbol(c, Decl(objectGroupBy.ts, 2, 40))
|
||||
>c : Symbol(c, Decl(objectGroupBy.ts, 2, 40))
|
||||
|
||||
@@ -30,9 +30,9 @@ const employees: Set<Employee> = new Set();
|
||||
|
||||
const byRole = Object.groupBy(employees, x => x.role);
|
||||
>byRole : Symbol(byRole, Decl(objectGroupBy.ts, 6, 5))
|
||||
>Object.groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.esnext.object.d.ts, --, --))
|
||||
>Object.groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.es2024.object.d.ts, --, --))
|
||||
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
|
||||
>groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.esnext.object.d.ts, --, --))
|
||||
>groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.es2024.object.d.ts, --, --))
|
||||
>employees : Symbol(employees, Decl(objectGroupBy.ts, 5, 5))
|
||||
>x : Symbol(x, Decl(objectGroupBy.ts, 6, 40))
|
||||
>x.role : Symbol(role, Decl(objectGroupBy.ts, 4, 31))
|
||||
@@ -41,9 +41,9 @@ const byRole = Object.groupBy(employees, x => x.role);
|
||||
|
||||
const byNonKey = Object.groupBy(employees, x => x);
|
||||
>byNonKey : Symbol(byNonKey, Decl(objectGroupBy.ts, 8, 5))
|
||||
>Object.groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.esnext.object.d.ts, --, --))
|
||||
>Object.groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.es2024.object.d.ts, --, --))
|
||||
>Object : Symbol(Object, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --))
|
||||
>groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.esnext.object.d.ts, --, --))
|
||||
>groupBy : Symbol(ObjectConstructor.groupBy, Decl(lib.es2024.object.d.ts, --, --))
|
||||
>employees : Symbol(employees, Decl(objectGroupBy.ts, 5, 5))
|
||||
>x : Symbol(x, Decl(objectGroupBy.ts, 8, 42))
|
||||
>x : Symbol(x, Decl(objectGroupBy.ts, 8, 42))
|
||||
|
||||
@@ -8,8 +8,8 @@ const { promise, resolve, reject } = Promise.withResolvers<T>();
|
||||
>promise : Symbol(promise, Decl(promiseWithResolvers.ts, 1, 7))
|
||||
>resolve : Symbol(resolve, Decl(promiseWithResolvers.ts, 1, 16))
|
||||
>reject : Symbol(reject, Decl(promiseWithResolvers.ts, 1, 25))
|
||||
>Promise.withResolvers : Symbol(PromiseConstructor.withResolvers, Decl(lib.esnext.promise.d.ts, --, --))
|
||||
>Promise.withResolvers : Symbol(PromiseConstructor.withResolvers, Decl(lib.es2024.promise.d.ts, --, --))
|
||||
>Promise : Symbol(Promise, Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --), Decl(lib.es2015.promise.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --), Decl(lib.es2018.promise.d.ts, --, --))
|
||||
>withResolvers : Symbol(PromiseConstructor.withResolvers, Decl(lib.esnext.promise.d.ts, --, --))
|
||||
>withResolvers : Symbol(PromiseConstructor.withResolvers, Decl(lib.es2024.promise.d.ts, --, --))
|
||||
>T : Symbol(T, Decl(promiseWithResolvers.ts, 0, 0))
|
||||
|
||||
|
||||
@@ -56,6 +56,20 @@
|
||||
"======== Module name '@typescript/lib-esnext' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024' from '/.src/__lib_node_modules_lookup_lib.es2024.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"File '/.src/node_modules/@types/typescript__lib-es2024.d.ts' does not exist.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023' from '/.src/__lib_node_modules_lookup_lib.es2023.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -366,6 +380,45 @@
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -405,19 +458,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -431,19 +471,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -782,17 +809,17 @@
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
@@ -808,19 +835,6 @@
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023/array' from '/.src/__lib_node_modules_lookup_lib.es2023.array.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023/array' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -860,6 +874,97 @@
|
||||
"======== Module name '@typescript/lib-es2023/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2024.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/collection' from '/.src/__lib_node_modules_lookup_lib.es2024.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/collection' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/object' from '/.src/__lib_node_modules_lookup_lib.es2024.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/promise' from '/.src/__lib_node_modules_lookup_lib.es2024.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/regexp' from '/.src/__lib_node_modules_lookup_lib.es2024.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2024.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/sharedmemory' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/string' from '/.src/__lib_node_modules_lookup_lib.es2024.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/intl' from '/.src/__lib_node_modules_lookup_lib.esnext.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -899,32 +1004,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/disposable' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/promise' from '/.src/__lib_node_modules_lookup_lib.esnext.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/object' from '/.src/__lib_node_modules_lookup_lib.esnext.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/collection' from '/.src/__lib_node_modules_lookup_lib.esnext.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -951,32 +1030,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/array' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/regexp' from '/.src/__lib_node_modules_lookup_lib.esnext.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/string' from '/.src/__lib_node_modules_lookup_lib.esnext.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/iterator' from '/.src/__lib_node_modules_lookup_lib.esnext.iterator.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/iterator' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
@@ -56,6 +56,20 @@
|
||||
"======== Module name '@typescript/lib-esnext' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024' from '/.src/__lib_node_modules_lookup_lib.es2024.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"File '/.src/node_modules/@types/typescript__lib-es2024.d.ts' does not exist.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024'",
|
||||
"Loading module '@typescript/lib-es2024' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023' from '/.src/__lib_node_modules_lookup_lib.es2023.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -366,6 +380,45 @@
|
||||
"======== Module name '@typescript/lib-es2016/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2017.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2017/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/object' from '/.src/__lib_node_modules_lookup_lib.es2017.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -405,19 +458,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/intl' from '/.src/__lib_node_modules_lookup_lib.es2017.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/intl'",
|
||||
"Loading module '@typescript/lib-es2017/intl' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/typedarrays' from '/.src/__lib_node_modules_lookup_lib.es2017.typedarrays.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/typedarrays' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -431,19 +471,6 @@
|
||||
"======== Module name '@typescript/lib-es2017/typedarrays' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2017/date' from '/.src/__lib_node_modules_lookup_lib.es2017.date.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2017/date'",
|
||||
"Loading module '@typescript/lib-es2017/date' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2017/date' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2018/asynciterable' from '/.src/__lib_node_modules_lookup_lib.es2018.asynciterable.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2018/asynciterable' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -782,17 +809,17 @@
|
||||
"======== Module name '@typescript/lib-es2022/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2022.sharedmemory.d.ts__.ts'. ========",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2022/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/sharedmemory' was not resolved. ========",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/string' from '/.src/__lib_node_modules_lookup_lib.es2022.string.d.ts__.ts'. ========",
|
||||
@@ -808,19 +835,6 @@
|
||||
"======== Module name '@typescript/lib-es2022/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2022/regexp' from '/.src/__lib_node_modules_lookup_lib.es2022.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2022/regexp'",
|
||||
"Loading module '@typescript/lib-es2022/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2022/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2023/array' from '/.src/__lib_node_modules_lookup_lib.es2023.array.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2023/array' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -860,6 +874,97 @@
|
||||
"======== Module name '@typescript/lib-es2023/intl' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/arraybuffer' from '/.src/__lib_node_modules_lookup_lib.es2024.arraybuffer.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/arraybuffer'",
|
||||
"Loading module '@typescript/lib-es2024/arraybuffer' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/arraybuffer' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/collection' from '/.src/__lib_node_modules_lookup_lib.es2024.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/collection'",
|
||||
"Loading module '@typescript/lib-es2024/collection' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/collection' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/object' from '/.src/__lib_node_modules_lookup_lib.es2024.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/object'",
|
||||
"Loading module '@typescript/lib-es2024/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/promise' from '/.src/__lib_node_modules_lookup_lib.es2024.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/promise'",
|
||||
"Loading module '@typescript/lib-es2024/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/regexp' from '/.src/__lib_node_modules_lookup_lib.es2024.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/regexp'",
|
||||
"Loading module '@typescript/lib-es2024/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/sharedmemory' from '/.src/__lib_node_modules_lookup_lib.es2024.sharedmemory.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/sharedmemory'",
|
||||
"Loading module '@typescript/lib-es2024/sharedmemory' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/sharedmemory' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-es2024/string' from '/.src/__lib_node_modules_lookup_lib.es2024.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-es2024/string'",
|
||||
"Loading module '@typescript/lib-es2024/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-es2024/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/intl' from '/.src/__lib_node_modules_lookup_lib.esnext.intl.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/intl' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -899,32 +1004,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/disposable' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/promise' from '/.src/__lib_node_modules_lookup_lib.esnext.promise.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/promise'",
|
||||
"Loading module '@typescript/lib-esnext/promise' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/promise' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/object' from '/.src/__lib_node_modules_lookup_lib.esnext.object.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/object'",
|
||||
"Loading module '@typescript/lib-esnext/object' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/object' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/collection' from '/.src/__lib_node_modules_lookup_lib.esnext.collection.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/collection' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
@@ -951,32 +1030,6 @@
|
||||
"======== Module name '@typescript/lib-esnext/array' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/regexp' from '/.src/__lib_node_modules_lookup_lib.esnext.regexp.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/regexp'",
|
||||
"Loading module '@typescript/lib-esnext/regexp' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/regexp' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/string' from '/.src/__lib_node_modules_lookup_lib.esnext.string.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
"Searching all ancestor node_modules directories for preferred extensions: TypeScript, Declaration.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"Scoped package detected, looking in 'typescript__lib-esnext/string'",
|
||||
"Loading module '@typescript/lib-esnext/string' from 'node_modules' folder, target file types: JavaScript.",
|
||||
"Searching all ancestor node_modules directories for fallback extensions: JavaScript.",
|
||||
"Directory '/node_modules' does not exist, skipping all lookups in it.",
|
||||
"======== Module name '@typescript/lib-esnext/string' was not resolved. ========",
|
||||
"File '/.ts/package.json' does not exist according to earlier cached lookups.",
|
||||
"File '/package.json' does not exist according to earlier cached lookups.",
|
||||
"======== Resolving module '@typescript/lib-esnext/iterator' from '/.src/__lib_node_modules_lookup_lib.esnext.iterator.d.ts__.ts'. ========",
|
||||
"Explicitly specified module resolution kind: 'Node10'.",
|
||||
"Loading module '@typescript/lib-esnext/iterator' from 'node_modules' folder, target file types: TypeScript, Declaration.",
|
||||
|
||||
+2
-2
@@ -1,5 +1,5 @@
|
||||
regExpWithOpenBracketInCharClass.ts(4,7): error TS1005: ']' expected.
|
||||
regExpWithOpenBracketInCharClass.ts(4,8): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regExpWithOpenBracketInCharClass.ts(4,8): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
|
||||
|
||||
==== regExpWithOpenBracketInCharClass.ts (2 errors) ====
|
||||
@@ -10,6 +10,6 @@ regExpWithOpenBracketInCharClass.ts(4,8): error TS1501: This regular expression
|
||||
|
||||
!!! error TS1005: ']' expected.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
];
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
regExpWithOpenBracketInCharClass.ts(3,8): error TS1501: This regular expression flag is only available when targeting 'es6' or later.
|
||||
regExpWithOpenBracketInCharClass.ts(4,7): error TS1005: ']' expected.
|
||||
regExpWithOpenBracketInCharClass.ts(4,8): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regExpWithOpenBracketInCharClass.ts(4,8): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
|
||||
|
||||
==== regExpWithOpenBracketInCharClass.ts (3 errors) ====
|
||||
@@ -13,6 +13,6 @@ regExpWithOpenBracketInCharClass.ts(4,8): error TS1501: This regular expression
|
||||
|
||||
!!! error TS1005: ']' expected.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
regularExpressionScanning.ts(3,7): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(3,7): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(3,9): error TS1501: This regular expression flag is only available when targeting 'es2018' or later.
|
||||
regularExpressionScanning.ts(3,10): error TS1502: The Unicode (u) flag and the Unicode Sets (v) flag cannot be set simultaneously.
|
||||
regularExpressionScanning.ts(3,11): error TS1499: Unknown regular expression flag.
|
||||
@@ -72,7 +72,7 @@ regularExpressionScanning.ts(21,28): error TS1529: Unknown Unicode property name
|
||||
regularExpressionScanning.ts(21,62): error TS1529: Unknown Unicode property name or value.
|
||||
regularExpressionScanning.ts(22,28): error TS1529: Unknown Unicode property name or value.
|
||||
regularExpressionScanning.ts(22,62): error TS1529: Unknown Unicode property name or value.
|
||||
regularExpressionScanning.ts(22,72): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(22,72): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(23,3): error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
regularExpressionScanning.ts(23,6): error TS1524: Unknown Unicode property name.
|
||||
regularExpressionScanning.ts(23,28): error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
@@ -108,7 +108,7 @@ regularExpressionScanning.ts(25,53): error TS1531: '\p' must be followed by a Un
|
||||
regularExpressionScanning.ts(25,57): error TS1531: '\P' must be followed by a Unicode property value expression enclosed in braces.
|
||||
regularExpressionScanning.ts(25,62): error TS1527: Expected a Unicode property name or value.
|
||||
regularExpressionScanning.ts(25,66): error TS1527: Expected a Unicode property name or value.
|
||||
regularExpressionScanning.ts(25,67): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(25,67): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(26,3): error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
regularExpressionScanning.ts(26,6): error TS1528: Any Unicode property that would possibly match more than a single character is only available when the Unicode Sets (v) flag is set.
|
||||
regularExpressionScanning.ts(26,16): error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
@@ -124,7 +124,7 @@ regularExpressionScanning.ts(27,47): error TS1528: Any Unicode property that wou
|
||||
regularExpressionScanning.ts(28,19): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(28,31): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(28,47): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(28,59): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(28,59): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(31,3): error TS1512: '\c' must be followed by an ASCII letter.
|
||||
regularExpressionScanning.ts(31,6): error TS1512: '\c' must be followed by an ASCII letter.
|
||||
regularExpressionScanning.ts(31,15): error TS1512: '\c' must be followed by an ASCII letter.
|
||||
@@ -156,7 +156,7 @@ regularExpressionScanning.ts(34,42): error TS1508: Unexpected ']'. Did you mean
|
||||
regularExpressionScanning.ts(34,43): error TS1535: This character cannot be escaped in a regular expression.
|
||||
regularExpressionScanning.ts(34,45): error TS1508: Unexpected '{'. Did you mean to escape it with backslash?
|
||||
regularExpressionScanning.ts(34,46): error TS1005: '}' expected.
|
||||
regularExpressionScanning.ts(34,47): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(34,47): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(36,4): error TS1517: Range out of order in character class.
|
||||
regularExpressionScanning.ts(36,8): error TS1517: Range out of order in character class.
|
||||
regularExpressionScanning.ts(36,34): error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
@@ -191,32 +191,32 @@ regularExpressionScanning.ts(38,67): error TS1005: '--' expected.
|
||||
regularExpressionScanning.ts(38,70): error TS1520: Expected a class set operand.
|
||||
regularExpressionScanning.ts(38,75): error TS1508: Unexpected '&'. Did you mean to escape it with backslash?
|
||||
regularExpressionScanning.ts(38,85): error TS1520: Expected a class set operand.
|
||||
regularExpressionScanning.ts(38,87): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(38,87): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(39,56): error TS1519: Operators must not be mixed within a character class. Wrap it in a nested class instead.
|
||||
regularExpressionScanning.ts(39,67): error TS1005: '&&' expected.
|
||||
regularExpressionScanning.ts(39,77): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(40,83): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(39,77): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(40,83): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(41,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(41,30): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(41,83): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(41,83): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(42,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(42,28): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(42,53): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(42,77): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(43,95): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(42,77): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(43,95): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(44,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(44,34): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(44,95): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(44,95): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(45,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(45,32): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(45,61): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(45,89): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(45,89): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(46,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(46,79): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(46,91): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(46,91): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(47,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(47,89): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
|
||||
|
||||
==== regularExpressionScanning.ts (219 errors) ====
|
||||
@@ -224,7 +224,7 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
// Flags
|
||||
/foo/visualstudiocode,
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2018' or later.
|
||||
~
|
||||
@@ -391,7 +391,7 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
~~~~~~~
|
||||
!!! error TS1529: Unknown Unicode property name or value.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/\p{InvalidProperty=Value}\p{=}\p{sc=}\P{=foo}[\p{}\p\\\P\P{]\p{/,
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
@@ -466,7 +466,7 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
|
||||
!!! error TS1527: Expected a Unicode property name or value.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/\p{RGI_Emoji}\P{RGI_Emoji}[^\p{RGI_Emoji}\P{RGI_Emoji}]/,
|
||||
~~~~~~~~~~~~~
|
||||
!!! error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
@@ -501,7 +501,7 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
// Character escapes
|
||||
/\c[\c0\ca\cQ\c\C]\c1\C/,
|
||||
/\c[\c0\ca\cQ\c\C]\c1\C/u,
|
||||
@@ -571,7 +571,7 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
|
||||
!!! error TS1005: '}' expected.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
// Unicode sets notation
|
||||
/[a--b[--][\d++[]]&&[[&0-9--]&&[\p{L}]--\P{L}-_-]]&&&\q{foo}[0---9][&&q&&&\q{bar}&&]/,
|
||||
~~~
|
||||
@@ -645,24 +645,24 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
|
||||
!!! error TS1520: Expected a class set operand.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[[^\P{Decimal_Number}&&[0-9]]&&\p{L}&&\p{ID_Continue}--\p{ASCII}\p{CWCF}]/v,
|
||||
~~
|
||||
!!! error TS1519: Operators must not be mixed within a character class. Wrap it in a nested class instead.
|
||||
|
||||
!!! error TS1005: '&&' expected.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^\p{Emoji}\p{RGI_Emoji}][^\p{Emoji}--\p{RGI_Emoji}][^\p{Emoji}&&\p{RGI_Emoji}]/v,
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^\p{RGI_Emoji}\p{Emoji}][^\p{RGI_Emoji}--\p{Emoji}][^\p{RGI_Emoji}&&\p{Emoji}]/v,
|
||||
~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^\p{RGI_Emoji}\q{foo}][^\p{RGI_Emoji}--\q{foo}][^\p{RGI_Emoji}&&\q{foo}]/v,
|
||||
~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
@@ -671,17 +671,17 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
~~~~~~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^\p{Emoji}[[\p{RGI_Emoji}]]][^\p{Emoji}--[[\p{RGI_Emoji}]]][^\p{Emoji}&&[[\p{RGI_Emoji}]]]/v,
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^[[\p{RGI_Emoji}]]\p{Emoji}][^[[\p{RGI_Emoji}]]--\p{Emoji}][^[[\p{RGI_Emoji}]]&&\p{Emoji}]/v,
|
||||
~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^[[\p{RGI_Emoji}]]\q{foo}][^[[\p{RGI_Emoji}]]--\q{foo}][^[[\p{RGI_Emoji}]]&&\q{foo}]/v,
|
||||
~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
@@ -690,20 +690,20 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^\q{foo|bar|baz}--\q{foo}--\q{bar}--\q{baz}][^\p{L}--\q{foo}--[\q{bar}]--[^[\q{baz}]]]/v,
|
||||
~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^[[\q{foo|bar|baz}]]--\q{foo}--\q{bar}--\q{baz}][^[^[^\p{L}]]--\q{foo}--[\q{bar}]--[^[\q{baz}]]]/v,
|
||||
~~~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
];
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
regularExpressionScanning.ts(3,7): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(3,7): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(3,9): error TS1501: This regular expression flag is only available when targeting 'es2018' or later.
|
||||
regularExpressionScanning.ts(3,10): error TS1502: The Unicode (u) flag and the Unicode Sets (v) flag cannot be set simultaneously.
|
||||
regularExpressionScanning.ts(3,11): error TS1499: Unknown regular expression flag.
|
||||
@@ -74,7 +74,7 @@ regularExpressionScanning.ts(21,62): error TS1529: Unknown Unicode property name
|
||||
regularExpressionScanning.ts(21,72): error TS1501: This regular expression flag is only available when targeting 'es6' or later.
|
||||
regularExpressionScanning.ts(22,28): error TS1529: Unknown Unicode property name or value.
|
||||
regularExpressionScanning.ts(22,62): error TS1529: Unknown Unicode property name or value.
|
||||
regularExpressionScanning.ts(22,72): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(22,72): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(23,3): error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
regularExpressionScanning.ts(23,6): error TS1524: Unknown Unicode property name.
|
||||
regularExpressionScanning.ts(23,28): error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
@@ -111,7 +111,7 @@ regularExpressionScanning.ts(25,53): error TS1531: '\p' must be followed by a Un
|
||||
regularExpressionScanning.ts(25,57): error TS1531: '\P' must be followed by a Unicode property value expression enclosed in braces.
|
||||
regularExpressionScanning.ts(25,62): error TS1527: Expected a Unicode property name or value.
|
||||
regularExpressionScanning.ts(25,66): error TS1527: Expected a Unicode property name or value.
|
||||
regularExpressionScanning.ts(25,67): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(25,67): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(26,3): error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
regularExpressionScanning.ts(26,6): error TS1528: Any Unicode property that would possibly match more than a single character is only available when the Unicode Sets (v) flag is set.
|
||||
regularExpressionScanning.ts(26,16): error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
@@ -128,7 +128,7 @@ regularExpressionScanning.ts(27,59): error TS1501: This regular expression flag
|
||||
regularExpressionScanning.ts(28,19): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(28,31): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(28,47): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(28,59): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(28,59): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(31,3): error TS1512: '\c' must be followed by an ASCII letter.
|
||||
regularExpressionScanning.ts(31,6): error TS1512: '\c' must be followed by an ASCII letter.
|
||||
regularExpressionScanning.ts(31,15): error TS1512: '\c' must be followed by an ASCII letter.
|
||||
@@ -162,7 +162,7 @@ regularExpressionScanning.ts(34,42): error TS1508: Unexpected ']'. Did you mean
|
||||
regularExpressionScanning.ts(34,43): error TS1535: This character cannot be escaped in a regular expression.
|
||||
regularExpressionScanning.ts(34,45): error TS1508: Unexpected '{'. Did you mean to escape it with backslash?
|
||||
regularExpressionScanning.ts(34,46): error TS1005: '}' expected.
|
||||
regularExpressionScanning.ts(34,47): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(34,47): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(36,4): error TS1517: Range out of order in character class.
|
||||
regularExpressionScanning.ts(36,8): error TS1517: Range out of order in character class.
|
||||
regularExpressionScanning.ts(36,34): error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
@@ -198,32 +198,32 @@ regularExpressionScanning.ts(38,67): error TS1005: '--' expected.
|
||||
regularExpressionScanning.ts(38,70): error TS1520: Expected a class set operand.
|
||||
regularExpressionScanning.ts(38,75): error TS1508: Unexpected '&'. Did you mean to escape it with backslash?
|
||||
regularExpressionScanning.ts(38,85): error TS1520: Expected a class set operand.
|
||||
regularExpressionScanning.ts(38,87): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(38,87): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(39,56): error TS1519: Operators must not be mixed within a character class. Wrap it in a nested class instead.
|
||||
regularExpressionScanning.ts(39,67): error TS1005: '&&' expected.
|
||||
regularExpressionScanning.ts(39,77): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(40,83): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(39,77): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(40,83): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(41,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(41,30): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(41,83): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(41,83): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(42,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(42,28): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(42,53): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(42,77): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(43,95): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(42,77): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(43,95): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(44,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(44,34): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(44,95): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(44,95): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(45,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(45,32): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(45,61): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(45,89): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(45,89): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(46,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(46,79): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(46,91): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(46,91): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
regularExpressionScanning.ts(47,5): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(47,89): error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
|
||||
|
||||
==== regularExpressionScanning.ts (226 errors) ====
|
||||
@@ -231,7 +231,7 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
// Flags
|
||||
/foo/visualstudiocode,
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2018' or later.
|
||||
~
|
||||
@@ -402,7 +402,7 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
~~~~~~~
|
||||
!!! error TS1529: Unknown Unicode property name or value.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/\p{InvalidProperty=Value}\p{=}\p{sc=}\P{=foo}[\p{}\p\\\P\P{]\p{/,
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
@@ -479,7 +479,7 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
|
||||
!!! error TS1527: Expected a Unicode property name or value.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/\p{RGI_Emoji}\P{RGI_Emoji}[^\p{RGI_Emoji}\P{RGI_Emoji}]/,
|
||||
~~~~~~~~~~~~~
|
||||
!!! error TS1530: Unicode property value expressions are only available when the Unicode (u) flag or the Unicode Sets (v) flag is set.
|
||||
@@ -516,7 +516,7 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
// Character escapes
|
||||
/\c[\c0\ca\cQ\c\C]\c1\C/,
|
||||
/\c[\c0\ca\cQ\c\C]\c1\C/u,
|
||||
@@ -590,7 +590,7 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
|
||||
!!! error TS1005: '}' expected.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
// Unicode sets notation
|
||||
/[a--b[--][\d++[]]&&[[&0-9--]&&[\p{L}]--\P{L}-_-]]&&&\q{foo}[0---9][&&q&&&\q{bar}&&]/,
|
||||
~~~
|
||||
@@ -666,24 +666,24 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
|
||||
!!! error TS1520: Expected a class set operand.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[[^\P{Decimal_Number}&&[0-9]]&&\p{L}&&\p{ID_Continue}--\p{ASCII}\p{CWCF}]/v,
|
||||
~~
|
||||
!!! error TS1519: Operators must not be mixed within a character class. Wrap it in a nested class instead.
|
||||
|
||||
!!! error TS1005: '&&' expected.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^\p{Emoji}\p{RGI_Emoji}][^\p{Emoji}--\p{RGI_Emoji}][^\p{Emoji}&&\p{RGI_Emoji}]/v,
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^\p{RGI_Emoji}\p{Emoji}][^\p{RGI_Emoji}--\p{Emoji}][^\p{RGI_Emoji}&&\p{Emoji}]/v,
|
||||
~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^\p{RGI_Emoji}\q{foo}][^\p{RGI_Emoji}--\q{foo}][^\p{RGI_Emoji}&&\q{foo}]/v,
|
||||
~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
@@ -692,17 +692,17 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
~~~~~~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^\p{Emoji}[[\p{RGI_Emoji}]]][^\p{Emoji}--[[\p{RGI_Emoji}]]][^\p{Emoji}&&[[\p{RGI_Emoji}]]]/v,
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^[[\p{RGI_Emoji}]]\p{Emoji}][^[[\p{RGI_Emoji}]]--\p{Emoji}][^[[\p{RGI_Emoji}]]&&\p{Emoji}]/v,
|
||||
~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^[[\p{RGI_Emoji}]]\q{foo}][^[[\p{RGI_Emoji}]]--\q{foo}][^[[\p{RGI_Emoji}]]&&\q{foo}]/v,
|
||||
~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
@@ -711,20 +711,20 @@ regularExpressionScanning.ts(47,101): error TS1501: This regular expression flag
|
||||
~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^\q{foo|bar|baz}--\q{foo}--\q{bar}--\q{baz}][^\p{L}--\q{foo}--[\q{bar}]--[^[\q{baz}]]]/v,
|
||||
~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
/[^[[\q{foo|bar|baz}]]--\q{foo}--\q{bar}--\q{baz}][^[^[^\p{L}]]--\q{foo}--[\q{bar}]--[^[\q{baz}]]]/v,
|
||||
~~~~~~~~~~~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~~~~~~~~~
|
||||
!!! error TS1518: Anything that would possibly match more than a single character is invalid inside a negated character class.
|
||||
~
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'esnext' or later.
|
||||
!!! error TS1501: This regular expression flag is only available when targeting 'es2024' or later.
|
||||
];
|
||||
|
||||
@@ -0,0 +1,13 @@
|
||||
//// [tests/cases/conformance/es2024/resizableArrayBuffer.ts] ////
|
||||
|
||||
=== resizableArrayBuffer.ts ===
|
||||
const buffer = new ArrayBuffer(8, { maxByteLength: 16 });
|
||||
>buffer : Symbol(buffer, Decl(resizableArrayBuffer.ts, 0, 5))
|
||||
>ArrayBuffer : Symbol(ArrayBuffer, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --), Decl(lib.es2024.arraybuffer.d.ts, --, --))
|
||||
>maxByteLength : Symbol(maxByteLength, Decl(resizableArrayBuffer.ts, 0, 35))
|
||||
|
||||
buffer.resizable;
|
||||
>buffer.resizable : Symbol(ArrayBuffer.resizable, Decl(lib.es2024.arraybuffer.d.ts, --, --))
|
||||
>buffer : Symbol(buffer, Decl(resizableArrayBuffer.ts, 0, 5))
|
||||
>resizable : Symbol(ArrayBuffer.resizable, Decl(lib.es2024.arraybuffer.d.ts, --, --))
|
||||
|
||||
@@ -0,0 +1,27 @@
|
||||
//// [tests/cases/conformance/es2024/resizableArrayBuffer.ts] ////
|
||||
|
||||
=== resizableArrayBuffer.ts ===
|
||||
const buffer = new ArrayBuffer(8, { maxByteLength: 16 });
|
||||
>buffer : ArrayBuffer
|
||||
> : ^^^^^^^^^^^
|
||||
>new ArrayBuffer(8, { maxByteLength: 16 }) : ArrayBuffer
|
||||
> : ^^^^^^^^^^^
|
||||
>ArrayBuffer : ArrayBufferConstructor
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^
|
||||
>8 : 8
|
||||
> : ^
|
||||
>{ maxByteLength: 16 } : { maxByteLength: number; }
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
>maxByteLength : number
|
||||
> : ^^^^^^
|
||||
>16 : 16
|
||||
> : ^^
|
||||
|
||||
buffer.resizable;
|
||||
>buffer.resizable : boolean
|
||||
> : ^^^^^^^
|
||||
>buffer : ArrayBuffer
|
||||
> : ^^^^^^^^^^^
|
||||
>resizable : boolean
|
||||
> : ^^^^^^^
|
||||
|
||||
@@ -0,0 +1,72 @@
|
||||
//// [tests/cases/conformance/es2024/sharedMemory.ts] ////
|
||||
|
||||
=== sharedMemory.ts ===
|
||||
const sab = new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 1024);
|
||||
>sab : Symbol(sab, Decl(sharedMemory.ts, 0, 5))
|
||||
>SharedArrayBuffer : Symbol(SharedArrayBuffer, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>Int32Array.BYTES_PER_ELEMENT : Symbol(Int32ArrayConstructor.BYTES_PER_ELEMENT, Decl(lib.es5.d.ts, --, --))
|
||||
>Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.core.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --) ... and 3 more)
|
||||
>BYTES_PER_ELEMENT : Symbol(Int32ArrayConstructor.BYTES_PER_ELEMENT, Decl(lib.es5.d.ts, --, --))
|
||||
|
||||
const int32 = new Int32Array(sab);
|
||||
>int32 : Symbol(int32, Decl(sharedMemory.ts, 1, 5))
|
||||
>Int32Array : Symbol(Int32Array, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.core.d.ts, --, --), Decl(lib.es2015.iterable.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --) ... and 3 more)
|
||||
>sab : Symbol(sab, Decl(sharedMemory.ts, 0, 5))
|
||||
|
||||
const sab64 = new SharedArrayBuffer(BigInt64Array.BYTES_PER_ELEMENT * 1024);
|
||||
>sab64 : Symbol(sab64, Decl(sharedMemory.ts, 2, 5))
|
||||
>SharedArrayBuffer : Symbol(SharedArrayBuffer, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>BigInt64Array.BYTES_PER_ELEMENT : Symbol(BigInt64ArrayConstructor.BYTES_PER_ELEMENT, Decl(lib.es2020.bigint.d.ts, --, --))
|
||||
>BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2022.array.d.ts, --, --), Decl(lib.es2023.array.d.ts, --, --))
|
||||
>BYTES_PER_ELEMENT : Symbol(BigInt64ArrayConstructor.BYTES_PER_ELEMENT, Decl(lib.es2020.bigint.d.ts, --, --))
|
||||
|
||||
const int64 = new BigInt64Array(sab64);
|
||||
>int64 : Symbol(int64, Decl(sharedMemory.ts, 3, 5))
|
||||
>BigInt64Array : Symbol(BigInt64Array, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2022.array.d.ts, --, --), Decl(lib.es2023.array.d.ts, --, --))
|
||||
>sab64 : Symbol(sab64, Decl(sharedMemory.ts, 2, 5))
|
||||
|
||||
const waitValue = Atomics.wait(int32, 0, 0);
|
||||
>waitValue : Symbol(waitValue, Decl(sharedMemory.ts, 4, 5))
|
||||
>Atomics.wait : Symbol(Atomics.wait, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --))
|
||||
>Atomics : Symbol(Atomics, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>wait : Symbol(Atomics.wait, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --))
|
||||
>int32 : Symbol(int32, Decl(sharedMemory.ts, 1, 5))
|
||||
|
||||
const { async, value } = Atomics.waitAsync(int32, 0, 0);
|
||||
>async : Symbol(async, Decl(sharedMemory.ts, 5, 7))
|
||||
>value : Symbol(value, Decl(sharedMemory.ts, 5, 14))
|
||||
>Atomics.waitAsync : Symbol(Atomics.waitAsync, Decl(lib.es2024.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>Atomics : Symbol(Atomics, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>waitAsync : Symbol(Atomics.waitAsync, Decl(lib.es2024.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>int32 : Symbol(int32, Decl(sharedMemory.ts, 1, 5))
|
||||
|
||||
const { async: async64, value: value64 } = Atomics.waitAsync(int64, 0, BigInt(0));
|
||||
>async : Symbol(async, Decl(lib.es2024.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>async64 : Symbol(async64, Decl(sharedMemory.ts, 6, 7))
|
||||
>value : Symbol(value, Decl(lib.es2024.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>value64 : Symbol(value64, Decl(sharedMemory.ts, 6, 23))
|
||||
>Atomics.waitAsync : Symbol(Atomics.waitAsync, Decl(lib.es2024.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>Atomics : Symbol(Atomics, Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2017.sharedmemory.d.ts, --, --), Decl(lib.es2020.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>waitAsync : Symbol(Atomics.waitAsync, Decl(lib.es2024.sharedmemory.d.ts, --, --), Decl(lib.es2024.sharedmemory.d.ts, --, --))
|
||||
>int64 : Symbol(int64, Decl(sharedMemory.ts, 3, 5))
|
||||
>BigInt : Symbol(BigInt, Decl(lib.es2020.bigint.d.ts, --, --), Decl(lib.es2020.bigint.d.ts, --, --))
|
||||
|
||||
const main = async () => {
|
||||
>main : Symbol(main, Decl(sharedMemory.ts, 8, 5))
|
||||
|
||||
if (async) {
|
||||
>async : Symbol(async, Decl(sharedMemory.ts, 5, 7))
|
||||
|
||||
await value;
|
||||
>value : Symbol(value, Decl(sharedMemory.ts, 5, 14))
|
||||
}
|
||||
if (async64) {
|
||||
>async64 : Symbol(async64, Decl(sharedMemory.ts, 6, 7))
|
||||
|
||||
await value64;
|
||||
>value64 : Symbol(value64, Decl(sharedMemory.ts, 6, 23))
|
||||
}
|
||||
}
|
||||
main();
|
||||
>main : Symbol(main, Decl(sharedMemory.ts, 8, 5))
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
//// [tests/cases/conformance/es2022/es2022SharedMemory.ts] ////
|
||||
//// [tests/cases/conformance/es2024/sharedMemory.ts] ////
|
||||
|
||||
=== es2022SharedMemory.ts ===
|
||||
=== sharedMemory.ts ===
|
||||
const sab = new SharedArrayBuffer(Int32Array.BYTES_PER_ELEMENT * 1024);
|
||||
>sab : SharedArrayBuffer
|
||||
> : ^^^^^^^^^^^^^^^^^
|
||||
@@ -0,0 +1,23 @@
|
||||
//// [tests/cases/conformance/es2024/transferableArrayBuffer.ts] ////
|
||||
|
||||
=== transferableArrayBuffer.ts ===
|
||||
const buffer = new ArrayBuffer(8);
|
||||
>buffer : Symbol(buffer, Decl(transferableArrayBuffer.ts, 0, 5))
|
||||
>ArrayBuffer : Symbol(ArrayBuffer, Decl(lib.es5.d.ts, --, --), Decl(lib.es5.d.ts, --, --), Decl(lib.es2015.symbol.wellknown.d.ts, --, --), Decl(lib.es2024.arraybuffer.d.ts, --, --))
|
||||
|
||||
const buffer2 = buffer.transfer();
|
||||
>buffer2 : Symbol(buffer2, Decl(transferableArrayBuffer.ts, 1, 5))
|
||||
>buffer.transfer : Symbol(ArrayBuffer.transfer, Decl(lib.es2024.arraybuffer.d.ts, --, --))
|
||||
>buffer : Symbol(buffer, Decl(transferableArrayBuffer.ts, 0, 5))
|
||||
>transfer : Symbol(ArrayBuffer.transfer, Decl(lib.es2024.arraybuffer.d.ts, --, --))
|
||||
|
||||
buffer.detached;
|
||||
>buffer.detached : Symbol(ArrayBuffer.detached, Decl(lib.es2024.arraybuffer.d.ts, --, --))
|
||||
>buffer : Symbol(buffer, Decl(transferableArrayBuffer.ts, 0, 5))
|
||||
>detached : Symbol(ArrayBuffer.detached, Decl(lib.es2024.arraybuffer.d.ts, --, --))
|
||||
|
||||
buffer2.detached;
|
||||
>buffer2.detached : Symbol(ArrayBuffer.detached, Decl(lib.es2024.arraybuffer.d.ts, --, --))
|
||||
>buffer2 : Symbol(buffer2, Decl(transferableArrayBuffer.ts, 1, 5))
|
||||
>detached : Symbol(ArrayBuffer.detached, Decl(lib.es2024.arraybuffer.d.ts, --, --))
|
||||
|
||||
@@ -0,0 +1,41 @@
|
||||
//// [tests/cases/conformance/es2024/transferableArrayBuffer.ts] ////
|
||||
|
||||
=== transferableArrayBuffer.ts ===
|
||||
const buffer = new ArrayBuffer(8);
|
||||
>buffer : ArrayBuffer
|
||||
> : ^^^^^^^^^^^
|
||||
>new ArrayBuffer(8) : ArrayBuffer
|
||||
> : ^^^^^^^^^^^
|
||||
>ArrayBuffer : ArrayBufferConstructor
|
||||
> : ^^^^^^^^^^^^^^^^^^^^^^
|
||||
>8 : 8
|
||||
> : ^
|
||||
|
||||
const buffer2 = buffer.transfer();
|
||||
>buffer2 : ArrayBuffer
|
||||
> : ^^^^^^^^^^^
|
||||
>buffer.transfer() : ArrayBuffer
|
||||
> : ^^^^^^^^^^^
|
||||
>buffer.transfer : (newByteLength?: number) => ArrayBuffer
|
||||
> : ^ ^^^ ^^^^^
|
||||
>buffer : ArrayBuffer
|
||||
> : ^^^^^^^^^^^
|
||||
>transfer : (newByteLength?: number) => ArrayBuffer
|
||||
> : ^ ^^^ ^^^^^
|
||||
|
||||
buffer.detached;
|
||||
>buffer.detached : boolean
|
||||
> : ^^^^^^^
|
||||
>buffer : ArrayBuffer
|
||||
> : ^^^^^^^^^^^
|
||||
>detached : boolean
|
||||
> : ^^^^^^^
|
||||
|
||||
buffer2.detached;
|
||||
>buffer2.detached : boolean
|
||||
> : ^^^^^^^
|
||||
>buffer2 : ArrayBuffer
|
||||
> : ^^^^^^^^^^^
|
||||
>detached : boolean
|
||||
> : ^^^^^^^
|
||||
|
||||
+2
-2
@@ -105,7 +105,7 @@ default: false
|
||||
|
||||
--target, -t
|
||||
Set the JavaScript language version for emitted JavaScript and include compatible library declarations.
|
||||
one of: es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, esnext
|
||||
one of: es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, es2024, esnext
|
||||
default: es5
|
||||
|
||||
--module, -m
|
||||
@@ -115,7 +115,7 @@ default: undefined
|
||||
|
||||
--lib
|
||||
Specify a set of bundled library declaration files that describe the target runtime environment.
|
||||
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, esnext, dom, dom.iterable, dom.asynciterable, webworker, webworker.importscripts, webworker.iterable, webworker.asynciterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2016.intl, es2017.date, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2019.intl, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array, es2022.error, es2022.intl, es2022.object, es2022.sharedmemory, es2022.string, es2022.regexp, es2023.array, es2023.collection, es2023.intl, esnext.array, esnext.collection, esnext.intl, esnext.disposable, esnext.string, esnext.promise, esnext.decorators, esnext.object, esnext.regexp, esnext.iterator, decorators, decorators.legacy
|
||||
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, es2024, esnext, dom, dom.iterable, dom.asynciterable, webworker, webworker.importscripts, webworker.iterable, webworker.asynciterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2016.intl, es2017.arraybuffer, es2017.date, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2019.intl, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array, es2022.error, es2022.intl, es2022.object, es2022.string, es2022.regexp, es2023.array, es2023.collection, es2023.intl, es2024.arraybuffer, es2024.collection, es2024.object/esnext.object, es2024.promise/esnext.promise, es2024.regexp/esnext.regexp, es2024.sharedmemory, es2024.string/esnext.string, esnext.array, esnext.collection, esnext.intl, esnext.disposable, esnext.decorators, esnext.iterator, decorators, decorators.legacy
|
||||
default: undefined
|
||||
|
||||
--allowJs
|
||||
|
||||
@@ -565,7 +565,7 @@ default: react
|
||||
|
||||
[94m--lib[39m
|
||||
Specify a set of bundled library declaration files that describe the target runtime environment.
|
||||
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, esnext, dom, dom.iterable, dom.asynciterable, webworker, webworker.importscripts, webworker.iterable, webworker.asynciterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2016.intl, es2017.date, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2019.intl, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array, es2022.error, es2022.intl, es2022.object, es2022.sharedmemory, es2022.string, es2022.regexp, es2023.array, es2023.collection, es2023.intl, esnext.array, esnext.collection, esnext.intl, esnext.disposable, esnext.string, esnext.promise, esnext.decorators, esnext.object, esnext.regexp, esnext.iterator, decorators, decorators.legacy
|
||||
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, es2024, esnext, dom, dom.iterable, dom.asynciterable, webworker, webworker.importscripts, webworker.iterable, webworker.asynciterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2016.intl, es2017.arraybuffer, es2017.date, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2019.intl, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array, es2022.error, es2022.intl, es2022.object, es2022.string, es2022.regexp, es2023.array, es2023.collection, es2023.intl, es2024.arraybuffer, es2024.collection, es2024.object/esnext.object, es2024.promise/esnext.promise, es2024.regexp/esnext.regexp, es2024.sharedmemory, es2024.string/esnext.string, esnext.array, esnext.collection, esnext.intl, esnext.disposable, esnext.decorators, esnext.iterator, decorators, decorators.legacy
|
||||
default: undefined
|
||||
|
||||
[94m--moduleDetection[39m
|
||||
@@ -585,7 +585,7 @@ default: `React`
|
||||
|
||||
[94m--target, -t[39m
|
||||
Set the JavaScript language version for emitted JavaScript and include compatible library declarations.
|
||||
one of: es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, esnext
|
||||
one of: es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, es2024, esnext
|
||||
default: es5
|
||||
|
||||
[94m--useDefineForClassFields[39m
|
||||
|
||||
@@ -104,7 +104,7 @@ default: false
|
||||
|
||||
[94m--target, -t[39m
|
||||
Set the JavaScript language version for emitted JavaScript and include compatible library declarations.
|
||||
one of: es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, esnext
|
||||
one of: es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, es2024, esnext
|
||||
default: es5
|
||||
|
||||
[94m--module, -m[39m
|
||||
@@ -114,7 +114,7 @@ default: undefined
|
||||
|
||||
[94m--lib[39m
|
||||
Specify a set of bundled library declaration files that describe the target runtime environment.
|
||||
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, esnext, dom, dom.iterable, dom.asynciterable, webworker, webworker.importscripts, webworker.iterable, webworker.asynciterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2016.intl, es2017.date, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2019.intl, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array, es2022.error, es2022.intl, es2022.object, es2022.sharedmemory, es2022.string, es2022.regexp, es2023.array, es2023.collection, es2023.intl, esnext.array, esnext.collection, esnext.intl, esnext.disposable, esnext.string, esnext.promise, esnext.decorators, esnext.object, esnext.regexp, esnext.iterator, decorators, decorators.legacy
|
||||
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, es2024, esnext, dom, dom.iterable, dom.asynciterable, webworker, webworker.importscripts, webworker.iterable, webworker.asynciterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2016.intl, es2017.arraybuffer, es2017.date, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2019.intl, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array, es2022.error, es2022.intl, es2022.object, es2022.string, es2022.regexp, es2023.array, es2023.collection, es2023.intl, es2024.arraybuffer, es2024.collection, es2024.object/esnext.object, es2024.promise/esnext.promise, es2024.regexp/esnext.regexp, es2024.sharedmemory, es2024.string/esnext.string, esnext.array, esnext.collection, esnext.intl, esnext.disposable, esnext.decorators, esnext.iterator, decorators, decorators.legacy
|
||||
default: undefined
|
||||
|
||||
[94m--allowJs[39m
|
||||
|
||||
+2
-2
@@ -105,7 +105,7 @@ default: false
|
||||
|
||||
[94m--target, -t[39m
|
||||
Set the JavaScript language version for emitted JavaScript and include compatible library declarations.
|
||||
one of: es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, esnext
|
||||
one of: es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, es2024, esnext
|
||||
default: es5
|
||||
|
||||
[94m--module, -m[39m
|
||||
@@ -115,7 +115,7 @@ default: undefined
|
||||
|
||||
[94m--lib[39m
|
||||
Specify a set of bundled library declaration files that describe the target runtime environment.
|
||||
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, esnext, dom, dom.iterable, dom.asynciterable, webworker, webworker.importscripts, webworker.iterable, webworker.asynciterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2016.intl, es2017.date, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2019.intl, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array, es2022.error, es2022.intl, es2022.object, es2022.sharedmemory, es2022.string, es2022.regexp, es2023.array, es2023.collection, es2023.intl, esnext.array, esnext.collection, esnext.intl, esnext.disposable, esnext.string, esnext.promise, esnext.decorators, esnext.object, esnext.regexp, esnext.iterator, decorators, decorators.legacy
|
||||
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, es2024, esnext, dom, dom.iterable, dom.asynciterable, webworker, webworker.importscripts, webworker.iterable, webworker.asynciterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2016.intl, es2017.arraybuffer, es2017.date, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2019.intl, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array, es2022.error, es2022.intl, es2022.object, es2022.string, es2022.regexp, es2023.array, es2023.collection, es2023.intl, es2024.arraybuffer, es2024.collection, es2024.object/esnext.object, es2024.promise/esnext.promise, es2024.regexp/esnext.regexp, es2024.sharedmemory, es2024.string/esnext.string, esnext.array, esnext.collection, esnext.intl, esnext.disposable, esnext.decorators, esnext.iterator, decorators, decorators.legacy
|
||||
default: undefined
|
||||
|
||||
[94m--allowJs[39m
|
||||
|
||||
+2
-2
@@ -105,7 +105,7 @@ default: false
|
||||
|
||||
[94m--target, -t[39m
|
||||
Set the JavaScript language version for emitted JavaScript and include compatible library declarations.
|
||||
one of: es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, esnext
|
||||
one of: es5, es6/es2015, es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, es2024, esnext
|
||||
default: es5
|
||||
|
||||
[94m--module, -m[39m
|
||||
@@ -115,7 +115,7 @@ default: undefined
|
||||
|
||||
[94m--lib[39m
|
||||
Specify a set of bundled library declaration files that describe the target runtime environment.
|
||||
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, esnext, dom, dom.iterable, dom.asynciterable, webworker, webworker.importscripts, webworker.iterable, webworker.asynciterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2016.intl, es2017.date, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2019.intl, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array, es2022.error, es2022.intl, es2022.object, es2022.sharedmemory, es2022.string, es2022.regexp, es2023.array, es2023.collection, es2023.intl, esnext.array, esnext.collection, esnext.intl, esnext.disposable, esnext.string, esnext.promise, esnext.decorators, esnext.object, esnext.regexp, esnext.iterator, decorators, decorators.legacy
|
||||
one or more: es5, es6/es2015, es7/es2016, es2017, es2018, es2019, es2020, es2021, es2022, es2023, es2024, esnext, dom, dom.iterable, dom.asynciterable, webworker, webworker.importscripts, webworker.iterable, webworker.asynciterable, scripthost, es2015.core, es2015.collection, es2015.generator, es2015.iterable, es2015.promise, es2015.proxy, es2015.reflect, es2015.symbol, es2015.symbol.wellknown, es2016.array.include, es2016.intl, es2017.arraybuffer, es2017.date, es2017.object, es2017.sharedmemory, es2017.string, es2017.intl, es2017.typedarrays, es2018.asyncgenerator, es2018.asynciterable/esnext.asynciterable, es2018.intl, es2018.promise, es2018.regexp, es2019.array, es2019.object, es2019.string, es2019.symbol/esnext.symbol, es2019.intl, es2020.bigint/esnext.bigint, es2020.date, es2020.promise, es2020.sharedmemory, es2020.string, es2020.symbol.wellknown, es2020.intl, es2020.number, es2021.promise, es2021.string, es2021.weakref/esnext.weakref, es2021.intl, es2022.array, es2022.error, es2022.intl, es2022.object, es2022.string, es2022.regexp, es2023.array, es2023.collection, es2023.intl, es2024.arraybuffer, es2024.collection, es2024.object/esnext.object, es2024.promise/esnext.promise, es2024.regexp/esnext.regexp, es2024.sharedmemory, es2024.string/esnext.string, esnext.array, esnext.collection, esnext.intl, esnext.disposable, esnext.decorators, esnext.iterator, decorators, decorators.legacy
|
||||
default: undefined
|
||||
|
||||
[94m--allowJs[39m
|
||||
|
||||
+31
-31
@@ -202,12 +202,12 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/p
|
||||
|
||||
//// [/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts] *Lib* Inode:: 30
|
||||
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] Inode:: 113
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] Inode:: 117
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] Inode:: 114
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] Inode:: 118
|
||||
export {};
|
||||
|
||||
|
||||
@@ -242,7 +242,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2: *new*
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist: *new*
|
||||
{"inode":112}
|
||||
{"inode":116}
|
||||
/home/src/projects/project/packages/package2/src: *new*
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts: *new*
|
||||
@@ -290,20 +290,20 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Build dependencies
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.js] Inode:: 116
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.js] Inode:: 120
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.d.ts] Inode:: 117
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.d.ts] Inode:: 121
|
||||
export type FooType = "foo";
|
||||
export type BarType = "bar";
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] Inode:: 118
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] Inode:: 122
|
||||
{"root":["./src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 119
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 123
|
||||
{
|
||||
"root": [
|
||||
"./src/index.ts"
|
||||
@@ -355,7 +355,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package1:
|
||||
{"inode":6}
|
||||
/home/src/projects/project/packages/package1/dist: *new*
|
||||
{"inode":115}
|
||||
{"inode":119}
|
||||
/home/src/projects/project/packages/package1/package.json:
|
||||
{"inode":7}
|
||||
/home/src/projects/project/packages/package1/src:
|
||||
@@ -363,7 +363,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2:
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist:
|
||||
{"inode":112}
|
||||
{"inode":116}
|
||||
/home/src/projects/project/packages/package2/src:
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts:
|
||||
@@ -436,8 +436,8 @@ packages/package2/src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] file written with same contents Inode:: 113
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] file written with same contents Inode:: 114
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] file written with same contents Inode:: 117
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] file written with same contents Inode:: 118
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/node_modules/@types:
|
||||
@@ -465,9 +465,9 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package1:
|
||||
{"inode":6}
|
||||
/home/src/projects/project/packages/package1/dist:
|
||||
{"inode":115}
|
||||
{"inode":119}
|
||||
/home/src/projects/project/packages/package1/dist/index.d.ts: *new*
|
||||
{"inode":117}
|
||||
{"inode":121}
|
||||
/home/src/projects/project/packages/package1/package.json:
|
||||
{"inode":7}
|
||||
/home/src/projects/project/packages/package1/src:
|
||||
@@ -475,7 +475,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2:
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist:
|
||||
{"inode":112}
|
||||
{"inode":116}
|
||||
/home/src/projects/project/packages/package2/src:
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts:
|
||||
@@ -568,7 +568,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2:
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist:
|
||||
{"inode":112}
|
||||
{"inode":116}
|
||||
/home/src/projects/project/packages/package2/src:
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts:
|
||||
@@ -580,9 +580,9 @@ FsWatches::
|
||||
|
||||
FsWatches *deleted*::
|
||||
/home/src/projects/project/packages/package1/dist:
|
||||
{"inode":115}
|
||||
{"inode":119}
|
||||
/home/src/projects/project/packages/package1/dist/index.d.ts:
|
||||
{"inode":117}
|
||||
{"inode":121}
|
||||
|
||||
Timeout callback:: count: 2
|
||||
10: timerToUpdateProgram *new*
|
||||
@@ -690,8 +690,8 @@ Scheduling invalidateFailedLookup, Cancelled earlier one
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/package1 :: WatchInfo: /home/src/projects/project/node_modules/package1 1 undefined Failed Lookup Locations
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] file written with same contents Inode:: 113
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] file written with same contents Inode:: 114
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] file written with same contents Inode:: 117
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] file written with same contents Inode:: 118
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/node_modules: *new*
|
||||
@@ -729,7 +729,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2:
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist:
|
||||
{"inode":112}
|
||||
{"inode":116}
|
||||
/home/src/projects/project/packages/package2/src:
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts:
|
||||
@@ -927,14 +927,14 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Build dependencies
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] file written with same contents Inode:: 118
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] file written with same contents Inode:: 119
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.js] Inode:: 121
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] file written with same contents Inode:: 122
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] file written with same contents Inode:: 123
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.js] Inode:: 125
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.d.ts] Inode:: 122
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.d.ts] Inode:: 126
|
||||
export type FooType = "foo";
|
||||
export type BarType = "bar";
|
||||
|
||||
@@ -981,7 +981,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package1:
|
||||
{"inode":6}
|
||||
/home/src/projects/project/packages/package1/dist: *new*
|
||||
{"inode":120}
|
||||
{"inode":124}
|
||||
/home/src/projects/project/packages/package1/package.json:
|
||||
{"inode":7}
|
||||
/home/src/projects/project/packages/package1/src:
|
||||
@@ -989,7 +989,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2:
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist:
|
||||
{"inode":112}
|
||||
{"inode":116}
|
||||
/home/src/projects/project/packages/package2/src:
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts:
|
||||
@@ -1062,8 +1062,8 @@ packages/package2/src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] file written with same contents Inode:: 113
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] file written with same contents Inode:: 114
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] file written with same contents Inode:: 117
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] file written with same contents Inode:: 118
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/node_modules/@types:
|
||||
@@ -1091,9 +1091,9 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package1:
|
||||
{"inode":6}
|
||||
/home/src/projects/project/packages/package1/dist:
|
||||
{"inode":120}
|
||||
{"inode":124}
|
||||
/home/src/projects/project/packages/package1/dist/index.d.ts: *new*
|
||||
{"inode":122}
|
||||
{"inode":126}
|
||||
/home/src/projects/project/packages/package1/package.json:
|
||||
{"inode":7}
|
||||
/home/src/projects/project/packages/package1/src:
|
||||
@@ -1101,7 +1101,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2:
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist:
|
||||
{"inode":112}
|
||||
{"inode":116}
|
||||
/home/src/projects/project/packages/package2/src:
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts:
|
||||
|
||||
+26
-26
@@ -84,20 +84,20 @@ declare const console: { log(msg: any): void; };
|
||||
|
||||
//// [/home/src/tslibs/TS/Lib/lib.es2016.full.d.ts] *Lib* Inode:: 30
|
||||
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.js] Inode:: 113
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.js] Inode:: 117
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.d.ts] Inode:: 114
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.d.ts] Inode:: 118
|
||||
export type FooType = "foo";
|
||||
export type BarType = "bar";
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] Inode:: 115
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] Inode:: 119
|
||||
{"root":["./src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 116
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 120
|
||||
{
|
||||
"root": [
|
||||
"./src/index.ts"
|
||||
@@ -173,12 +173,12 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/packag
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/packages/package2 1 undefined Wild card directory
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] Inode:: 118
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] Inode:: 122
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] Inode:: 119
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] Inode:: 123
|
||||
export {};
|
||||
|
||||
|
||||
@@ -205,9 +205,9 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package1: *new*
|
||||
{"inode":6}
|
||||
/home/src/projects/project/packages/package1/dist: *new*
|
||||
{"inode":112}
|
||||
{"inode":116}
|
||||
/home/src/projects/project/packages/package1/dist/index.d.ts: *new*
|
||||
{"inode":114}
|
||||
{"inode":118}
|
||||
/home/src/projects/project/packages/package1/package.json: *new*
|
||||
{"inode":7}
|
||||
/home/src/projects/project/packages/package1/src: *new*
|
||||
@@ -215,7 +215,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2: *new*
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist: *new*
|
||||
{"inode":117}
|
||||
{"inode":121}
|
||||
/home/src/projects/project/packages/package2/src: *new*
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts: *new*
|
||||
@@ -309,7 +309,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2:
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist:
|
||||
{"inode":117}
|
||||
{"inode":121}
|
||||
/home/src/projects/project/packages/package2/src:
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts:
|
||||
@@ -321,9 +321,9 @@ FsWatches::
|
||||
|
||||
FsWatches *deleted*::
|
||||
/home/src/projects/project/packages/package1/dist:
|
||||
{"inode":112}
|
||||
{"inode":116}
|
||||
/home/src/projects/project/packages/package1/dist/index.d.ts:
|
||||
{"inode":114}
|
||||
{"inode":118}
|
||||
|
||||
Timeout callback:: count: 2
|
||||
1: timerToUpdateProgram *new*
|
||||
@@ -434,8 +434,8 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_
|
||||
sysLog:: Elapsed:: *ms:: onTimerToUpdateChildWatches:: 0 undefined
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] file written with same contents Inode:: 118
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] file written with same contents Inode:: 119
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] file written with same contents Inode:: 122
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] file written with same contents Inode:: 123
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/node_modules: *new*
|
||||
@@ -473,7 +473,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2:
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist:
|
||||
{"inode":117}
|
||||
{"inode":121}
|
||||
/home/src/projects/project/packages/package2/src:
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts:
|
||||
@@ -671,14 +671,14 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Build dependencies
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] file written with same contents Inode:: 115
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] file written with same contents Inode:: 116
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.js] Inode:: 121
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo] file written with same contents Inode:: 119
|
||||
//// [/home/src/projects/project/packages/package1/tsconfig.tsbuildinfo.readable.baseline.txt] file written with same contents Inode:: 120
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.js] Inode:: 125
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.d.ts] Inode:: 122
|
||||
//// [/home/src/projects/project/packages/package1/dist/index.d.ts] Inode:: 126
|
||||
export type FooType = "foo";
|
||||
export type BarType = "bar";
|
||||
|
||||
@@ -725,7 +725,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package1:
|
||||
{"inode":6}
|
||||
/home/src/projects/project/packages/package1/dist: *new*
|
||||
{"inode":120}
|
||||
{"inode":124}
|
||||
/home/src/projects/project/packages/package1/package.json:
|
||||
{"inode":7}
|
||||
/home/src/projects/project/packages/package1/src:
|
||||
@@ -733,7 +733,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2:
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist:
|
||||
{"inode":117}
|
||||
{"inode":121}
|
||||
/home/src/projects/project/packages/package2/src:
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts:
|
||||
@@ -806,8 +806,8 @@ packages/package2/src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] file written with same contents Inode:: 118
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] file written with same contents Inode:: 119
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.js] file written with same contents Inode:: 122
|
||||
//// [/home/src/projects/project/packages/package2/dist/index.d.ts] file written with same contents Inode:: 123
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/node_modules/@types:
|
||||
@@ -835,9 +835,9 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package1:
|
||||
{"inode":6}
|
||||
/home/src/projects/project/packages/package1/dist:
|
||||
{"inode":120}
|
||||
{"inode":124}
|
||||
/home/src/projects/project/packages/package1/dist/index.d.ts: *new*
|
||||
{"inode":122}
|
||||
{"inode":126}
|
||||
/home/src/projects/project/packages/package1/package.json:
|
||||
{"inode":7}
|
||||
/home/src/projects/project/packages/package1/src:
|
||||
@@ -845,7 +845,7 @@ FsWatches::
|
||||
/home/src/projects/project/packages/package2:
|
||||
{"inode":11}
|
||||
/home/src/projects/project/packages/package2/dist:
|
||||
{"inode":117}
|
||||
{"inode":121}
|
||||
/home/src/projects/project/packages/package2/src:
|
||||
{"inode":14}
|
||||
/home/src/projects/project/packages/package2/src/index.ts:
|
||||
|
||||
+58
-58
@@ -206,7 +206,7 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 unde
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Wild card directory
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] Inode:: 134
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] Inode:: 138
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
@@ -284,7 +284,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in a
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/a/2/unrelated/somethingUnrelated.ts] Inode:: 135
|
||||
//// [/home/src/projects/a/2/unrelated/somethingUnrelated.ts] Inode:: 139
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -302,7 +302,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in c
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/4/unrelated/somethingUnrelated.ts] Inode:: 136
|
||||
//// [/home/src/projects/c/4/unrelated/somethingUnrelated.ts] Inode:: 140
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -320,18 +320,18 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Build dependencies
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 138
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 142
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.c = void 0;
|
||||
exports.c = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 139
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 143
|
||||
export declare const c: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 140
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 144
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -351,14 +351,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 141
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 145
|
||||
export * from './c';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 142
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 146
|
||||
{"root":["../src/c.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 143
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 147
|
||||
{
|
||||
"root": [
|
||||
"../src/c.ts",
|
||||
@@ -368,18 +368,18 @@ export * from './c';
|
||||
"size": 68
|
||||
}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 145
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 149
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.a = void 0;
|
||||
exports.a = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 146
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 150
|
||||
export declare const a: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 147
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 151
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -400,15 +400,15 @@ __exportStar(require("./a"), exports);
|
||||
__exportStar(require("c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 148
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 152
|
||||
export * from './a';
|
||||
export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 149
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 153
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 150
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 154
|
||||
{
|
||||
"root": [
|
||||
"../src/a.ts",
|
||||
@@ -460,7 +460,7 @@ FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a:
|
||||
{"inode":19}
|
||||
/home/src/projects/a/1/a-impl/a/lib: *new*
|
||||
{"inode":144}
|
||||
{"inode":148}
|
||||
/home/src/projects/a/1/a-impl/a/node_modules:
|
||||
{"inode":25}
|
||||
/home/src/projects/a/1/a-impl/a/package.json:
|
||||
@@ -593,7 +593,7 @@ src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 134
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 138
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib/node_modules: *new*
|
||||
@@ -621,11 +621,11 @@ PolledWatches *deleted*::
|
||||
|
||||
FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib:
|
||||
{"inode":144}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":146}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":148}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":150}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":152}
|
||||
/home/src/projects/a/1/a-impl/a/node_modules:
|
||||
{"inode":25}
|
||||
/home/src/projects/a/1/a-impl/a/package.json:
|
||||
@@ -639,11 +639,11 @@ FsWatches::
|
||||
/home/src/projects/b/2/b-impl/b/tsconfig.json:
|
||||
{"inode":36}
|
||||
/home/src/projects/c/3/c-impl/c/lib: *new*
|
||||
{"inode":137}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":139}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":141}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":143}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":145}
|
||||
/home/src/projects/c/3/c-impl/c/package.json: *new*
|
||||
{"inode":12}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts:
|
||||
@@ -698,7 +698,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in a
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/a/2/unrelated/anotherFile.ts] Inode:: 151
|
||||
//// [/home/src/projects/a/2/unrelated/anotherFile.ts] Inode:: 155
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -716,7 +716,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in c
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/4/unrelated/anotherFile.ts] Inode:: 152
|
||||
//// [/home/src/projects/c/4/unrelated/anotherFile.ts] Inode:: 156
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -856,17 +856,17 @@ FsWatches::
|
||||
|
||||
FsWatches *deleted*::
|
||||
/home/src/projects/a/1/a-impl/a/lib:
|
||||
{"inode":144}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts:
|
||||
{"inode":146}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts:
|
||||
{"inode":148}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts:
|
||||
{"inode":150}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts:
|
||||
{"inode":152}
|
||||
/home/src/projects/c/3/c-impl/c/lib:
|
||||
{"inode":137}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts:
|
||||
{"inode":139}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts:
|
||||
{"inode":141}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts:
|
||||
{"inode":143}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts:
|
||||
{"inode":145}
|
||||
|
||||
Timeout callback:: count: 2
|
||||
18: timerToUpdateProgram *new*
|
||||
@@ -984,7 +984,7 @@ src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 134
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 138
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/b/2/b-impl/b/node_modules/@types:
|
||||
@@ -1099,18 +1099,18 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Build dependencies
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 154
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 158
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.c = void 0;
|
||||
exports.c = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 155
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 159
|
||||
export declare const c: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 156
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 160
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -1130,14 +1130,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 157
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 161
|
||||
export * from './c';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 158
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 162
|
||||
{"root":["../src/c.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 159
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 163
|
||||
{
|
||||
"root": [
|
||||
"../src/c.ts",
|
||||
@@ -1147,18 +1147,18 @@ export * from './c';
|
||||
"size": 68
|
||||
}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 161
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 165
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.a = void 0;
|
||||
exports.a = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 162
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 166
|
||||
export declare const a: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 163
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 167
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -1179,15 +1179,15 @@ __exportStar(require("./a"), exports);
|
||||
__exportStar(require("c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 164
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 168
|
||||
export * from './a';
|
||||
export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 165
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 169
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 166
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 170
|
||||
{
|
||||
"root": [
|
||||
"../src/a.ts",
|
||||
@@ -1239,7 +1239,7 @@ FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a:
|
||||
{"inode":19}
|
||||
/home/src/projects/a/1/a-impl/a/lib: *new*
|
||||
{"inode":160}
|
||||
{"inode":164}
|
||||
/home/src/projects/a/1/a-impl/a/node_modules:
|
||||
{"inode":25}
|
||||
/home/src/projects/a/1/a-impl/a/package.json:
|
||||
@@ -1370,7 +1370,7 @@ src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 134
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 138
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib/node_modules: *new*
|
||||
@@ -1398,11 +1398,11 @@ PolledWatches *deleted*::
|
||||
|
||||
FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib:
|
||||
{"inode":160}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":162}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":164}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":166}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":168}
|
||||
/home/src/projects/a/1/a-impl/a/node_modules:
|
||||
{"inode":25}
|
||||
/home/src/projects/a/1/a-impl/a/package.json:
|
||||
@@ -1416,11 +1416,11 @@ FsWatches::
|
||||
/home/src/projects/b/2/b-impl/b/tsconfig.json:
|
||||
{"inode":36}
|
||||
/home/src/projects/c/3/c-impl/c/lib: *new*
|
||||
{"inode":153}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":155}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":157}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":159}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":161}
|
||||
/home/src/projects/c/3/c-impl/c/package.json: *new*
|
||||
{"inode":12}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts:
|
||||
|
||||
+44
-44
@@ -206,7 +206,7 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 unde
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Wild card directory
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] Inode:: 134
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] Inode:: 138
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
@@ -280,7 +280,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in a
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/a/2/unrelated/somethingUnrelated.ts] Inode:: 135
|
||||
//// [/home/src/projects/a/2/unrelated/somethingUnrelated.ts] Inode:: 139
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -298,7 +298,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in c
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/4/unrelated/somethingUnrelated.ts] Inode:: 136
|
||||
//// [/home/src/projects/c/4/unrelated/somethingUnrelated.ts] Inode:: 140
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -316,18 +316,18 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Build dependencies
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 138
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 142
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.c = void 0;
|
||||
exports.c = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 139
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 143
|
||||
export declare const c: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 140
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 144
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -347,14 +347,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 141
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 145
|
||||
export * from './c';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 142
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 146
|
||||
{"root":["../src/c.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 143
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 147
|
||||
{
|
||||
"root": [
|
||||
"../src/c.ts",
|
||||
@@ -364,18 +364,18 @@ export * from './c';
|
||||
"size": 68
|
||||
}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 145
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 149
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.a = void 0;
|
||||
exports.a = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 146
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 150
|
||||
export declare const a: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 147
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 151
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -396,15 +396,15 @@ __exportStar(require("./a"), exports);
|
||||
__exportStar(require("c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 148
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 152
|
||||
export * from './a';
|
||||
export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 149
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 153
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 150
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 154
|
||||
{
|
||||
"root": [
|
||||
"../src/a.ts",
|
||||
@@ -552,7 +552,7 @@ src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 134
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 138
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib/node_modules: *new*
|
||||
@@ -580,9 +580,9 @@ PolledWatches *deleted*::
|
||||
|
||||
FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":146}
|
||||
{"inode":150}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":148}
|
||||
{"inode":152}
|
||||
/home/src/projects/a/1/a-impl/a/package.json:
|
||||
{"inode":24}
|
||||
/home/src/projects/b/2/b-impl/b/src/index.ts:
|
||||
@@ -590,9 +590,9 @@ FsWatches::
|
||||
/home/src/projects/b/2/b-impl/b/tsconfig.json:
|
||||
{"inode":36}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":139}
|
||||
{"inode":143}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":141}
|
||||
{"inode":145}
|
||||
/home/src/projects/c/3/c-impl/c/package.json: *new*
|
||||
{"inode":12}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts:
|
||||
@@ -659,7 +659,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in a
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/a/2/unrelated/anotherFile.ts] Inode:: 151
|
||||
//// [/home/src/projects/a/2/unrelated/anotherFile.ts] Inode:: 155
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -688,7 +688,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in c
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/4/unrelated/anotherFile.ts] Inode:: 152
|
||||
//// [/home/src/projects/c/4/unrelated/anotherFile.ts] Inode:: 156
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -827,13 +827,13 @@ FsWatches::
|
||||
|
||||
FsWatches *deleted*::
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts:
|
||||
{"inode":146}
|
||||
{"inode":150}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts:
|
||||
{"inode":148}
|
||||
{"inode":152}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts:
|
||||
{"inode":139}
|
||||
{"inode":143}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts:
|
||||
{"inode":141}
|
||||
{"inode":145}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/home/src/projects/a:
|
||||
@@ -963,7 +963,7 @@ src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 134
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 138
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/b/2/b-impl/b/node_modules/@types:
|
||||
@@ -1059,18 +1059,18 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Build dependencies
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 154
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 158
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.c = void 0;
|
||||
exports.c = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 155
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 159
|
||||
export declare const c: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 156
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 160
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -1090,14 +1090,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 157
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 161
|
||||
export * from './c';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 158
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 162
|
||||
{"root":["../src/c.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 159
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 163
|
||||
{
|
||||
"root": [
|
||||
"../src/c.ts",
|
||||
@@ -1107,18 +1107,18 @@ export * from './c';
|
||||
"size": 68
|
||||
}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 161
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 165
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.a = void 0;
|
||||
exports.a = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 162
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 166
|
||||
export declare const a: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 163
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 167
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -1139,15 +1139,15 @@ __exportStar(require("./a"), exports);
|
||||
__exportStar(require("c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 164
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 168
|
||||
export * from './a';
|
||||
export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 165
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 169
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 166
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 170
|
||||
{
|
||||
"root": [
|
||||
"../src/a.ts",
|
||||
@@ -1293,7 +1293,7 @@ src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 134
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 138
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib/node_modules: *new*
|
||||
@@ -1321,9 +1321,9 @@ PolledWatches *deleted*::
|
||||
|
||||
FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":162}
|
||||
{"inode":166}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":164}
|
||||
{"inode":168}
|
||||
/home/src/projects/a/1/a-impl/a/package.json:
|
||||
{"inode":24}
|
||||
/home/src/projects/b/2/b-impl/b/src/index.ts:
|
||||
@@ -1331,9 +1331,9 @@ FsWatches::
|
||||
/home/src/projects/b/2/b-impl/b/tsconfig.json:
|
||||
{"inode":36}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":155}
|
||||
{"inode":159}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":157}
|
||||
{"inode":161}
|
||||
/home/src/projects/c/3/c-impl/c/package.json: *new*
|
||||
{"inode":12}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts:
|
||||
|
||||
+56
-56
@@ -88,18 +88,18 @@ interface Array<T> { length: number; [n: number]: T; }
|
||||
interface ReadonlyArray<T> {}
|
||||
declare const console: { log(msg: any): void; };
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 134
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 138
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.c = void 0;
|
||||
exports.c = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 135
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 139
|
||||
export declare const c: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 136
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 140
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -119,14 +119,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 137
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 141
|
||||
export * from './c';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 138
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 142
|
||||
{"root":["../src/c.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 139
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 143
|
||||
{
|
||||
"root": [
|
||||
"../src/c.ts",
|
||||
@@ -136,18 +136,18 @@ export * from './c';
|
||||
"size": 68
|
||||
}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 141
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 145
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.a = void 0;
|
||||
exports.a = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 142
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 146
|
||||
export declare const a: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 143
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 147
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -168,15 +168,15 @@ __exportStar(require("./a"), exports);
|
||||
__exportStar(require("c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 144
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 148
|
||||
export * from './a';
|
||||
export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 145
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 149
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 146
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 150
|
||||
{
|
||||
"root": [
|
||||
"../src/a.ts",
|
||||
@@ -291,7 +291,7 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 unde
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Wild card directory
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] Inode:: 148
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] Inode:: 152
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
@@ -313,11 +313,11 @@ PolledWatches::
|
||||
|
||||
FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib: *new*
|
||||
{"inode":140}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":142}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":144}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":146}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":148}
|
||||
/home/src/projects/a/1/a-impl/a/node_modules: *new*
|
||||
{"inode":25}
|
||||
/home/src/projects/a/1/a-impl/a/package.json: *new*
|
||||
@@ -331,11 +331,11 @@ FsWatches::
|
||||
/home/src/projects/b/2/b-impl/b/tsconfig.json: *new*
|
||||
{"inode":36}
|
||||
/home/src/projects/c/3/c-impl/c/lib: *new*
|
||||
{"inode":133}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":135}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":137}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":139}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":141}
|
||||
/home/src/projects/c/3/c-impl/c/package.json: *new*
|
||||
{"inode":12}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts: *new*
|
||||
@@ -383,7 +383,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in a
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/a/2/unrelated/somethingUnrelated.ts] Inode:: 149
|
||||
//// [/home/src/projects/a/2/unrelated/somethingUnrelated.ts] Inode:: 153
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -401,7 +401,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in c
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/4/unrelated/somethingUnrelated.ts] Inode:: 150
|
||||
//// [/home/src/projects/c/4/unrelated/somethingUnrelated.ts] Inode:: 154
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -419,7 +419,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in a
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/a/2/unrelated/anotherFile.ts] Inode:: 151
|
||||
//// [/home/src/projects/a/2/unrelated/anotherFile.ts] Inode:: 155
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -437,7 +437,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in c
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/4/unrelated/anotherFile.ts] Inode:: 152
|
||||
//// [/home/src/projects/c/4/unrelated/anotherFile.ts] Inode:: 156
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -577,17 +577,17 @@ FsWatches::
|
||||
|
||||
FsWatches *deleted*::
|
||||
/home/src/projects/a/1/a-impl/a/lib:
|
||||
{"inode":140}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts:
|
||||
{"inode":142}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts:
|
||||
{"inode":144}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts:
|
||||
{"inode":146}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts:
|
||||
{"inode":148}
|
||||
/home/src/projects/c/3/c-impl/c/lib:
|
||||
{"inode":133}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts:
|
||||
{"inode":135}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts:
|
||||
{"inode":137}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts:
|
||||
{"inode":139}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts:
|
||||
{"inode":141}
|
||||
|
||||
Timeout callback:: count: 2
|
||||
13: timerToUpdateProgram *new*
|
||||
@@ -705,7 +705,7 @@ src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 148
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 152
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/b/2/b-impl/b/node_modules/@types:
|
||||
@@ -820,18 +820,18 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Build dependencies
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 154
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 158
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.c = void 0;
|
||||
exports.c = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 155
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 159
|
||||
export declare const c: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 156
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 160
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -851,14 +851,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 157
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 161
|
||||
export * from './c';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 158
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 162
|
||||
{"root":["../src/c.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 159
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 163
|
||||
{
|
||||
"root": [
|
||||
"../src/c.ts",
|
||||
@@ -868,18 +868,18 @@ export * from './c';
|
||||
"size": 68
|
||||
}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 161
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 165
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.a = void 0;
|
||||
exports.a = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 162
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 166
|
||||
export declare const a: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 163
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 167
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -900,15 +900,15 @@ __exportStar(require("./a"), exports);
|
||||
__exportStar(require("c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 164
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 168
|
||||
export * from './a';
|
||||
export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 165
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 169
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 166
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 170
|
||||
{
|
||||
"root": [
|
||||
"../src/a.ts",
|
||||
@@ -960,7 +960,7 @@ FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a:
|
||||
{"inode":19}
|
||||
/home/src/projects/a/1/a-impl/a/lib: *new*
|
||||
{"inode":160}
|
||||
{"inode":164}
|
||||
/home/src/projects/a/1/a-impl/a/node_modules:
|
||||
{"inode":25}
|
||||
/home/src/projects/a/1/a-impl/a/package.json:
|
||||
@@ -1091,7 +1091,7 @@ src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 148
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 152
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib/node_modules: *new*
|
||||
@@ -1119,11 +1119,11 @@ PolledWatches *deleted*::
|
||||
|
||||
FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib:
|
||||
{"inode":160}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":162}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":164}
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":166}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":168}
|
||||
/home/src/projects/a/1/a-impl/a/node_modules:
|
||||
{"inode":25}
|
||||
/home/src/projects/a/1/a-impl/a/package.json:
|
||||
@@ -1137,11 +1137,11 @@ FsWatches::
|
||||
/home/src/projects/b/2/b-impl/b/tsconfig.json:
|
||||
{"inode":36}
|
||||
/home/src/projects/c/3/c-impl/c/lib: *new*
|
||||
{"inode":153}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":155}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":157}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":159}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":161}
|
||||
/home/src/projects/c/3/c-impl/c/package.json: *new*
|
||||
{"inode":12}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts:
|
||||
|
||||
+43
-43
@@ -88,18 +88,18 @@ interface Array<T> { length: number; [n: number]: T; }
|
||||
interface ReadonlyArray<T> {}
|
||||
declare const console: { log(msg: any): void; };
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 134
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 138
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.c = void 0;
|
||||
exports.c = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 135
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 139
|
||||
export declare const c: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 136
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 140
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -119,14 +119,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 137
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 141
|
||||
export * from './c';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 138
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 142
|
||||
{"root":["../src/c.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 139
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 143
|
||||
{
|
||||
"root": [
|
||||
"../src/c.ts",
|
||||
@@ -136,18 +136,18 @@ export * from './c';
|
||||
"size": 68
|
||||
}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 141
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 145
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.a = void 0;
|
||||
exports.a = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 142
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 146
|
||||
export declare const a: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 143
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 147
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -168,15 +168,15 @@ __exportStar(require("./a"), exports);
|
||||
__exportStar(require("c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 144
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 148
|
||||
export * from './a';
|
||||
export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 145
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 149
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 146
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 150
|
||||
{
|
||||
"root": [
|
||||
"../src/a.ts",
|
||||
@@ -291,7 +291,7 @@ DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 unde
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/b/2/b-impl/b/src 1 undefined Wild card directory
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] Inode:: 148
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] Inode:: 152
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
@@ -313,9 +313,9 @@ PolledWatches::
|
||||
|
||||
FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":142}
|
||||
{"inode":146}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":144}
|
||||
{"inode":148}
|
||||
/home/src/projects/a/1/a-impl/a/package.json: *new*
|
||||
{"inode":24}
|
||||
/home/src/projects/b/2/b-impl/b/src/index.ts: *new*
|
||||
@@ -323,9 +323,9 @@ FsWatches::
|
||||
/home/src/projects/b/2/b-impl/b/tsconfig.json: *new*
|
||||
{"inode":36}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":135}
|
||||
{"inode":139}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":137}
|
||||
{"inode":141}
|
||||
/home/src/projects/c/3/c-impl/c/package.json: *new*
|
||||
{"inode":12}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts: *new*
|
||||
@@ -385,7 +385,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in a
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/a/2/unrelated/somethingUnrelated.ts] Inode:: 149
|
||||
//// [/home/src/projects/a/2/unrelated/somethingUnrelated.ts] Inode:: 153
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -414,7 +414,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in c
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/4/unrelated/somethingUnrelated.ts] Inode:: 150
|
||||
//// [/home/src/projects/c/4/unrelated/somethingUnrelated.ts] Inode:: 154
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -443,7 +443,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in a
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/a/2/unrelated/anotherFile.ts] Inode:: 151
|
||||
//// [/home/src/projects/a/2/unrelated/anotherFile.ts] Inode:: 155
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -472,7 +472,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: change in unrelated folder in c
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/4/unrelated/anotherFile.ts] Inode:: 152
|
||||
//// [/home/src/projects/c/4/unrelated/anotherFile.ts] Inode:: 156
|
||||
export const a = 10;
|
||||
|
||||
|
||||
@@ -611,13 +611,13 @@ FsWatches::
|
||||
|
||||
FsWatches *deleted*::
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts:
|
||||
{"inode":142}
|
||||
{"inode":146}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts:
|
||||
{"inode":144}
|
||||
{"inode":148}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts:
|
||||
{"inode":135}
|
||||
{"inode":139}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts:
|
||||
{"inode":137}
|
||||
{"inode":141}
|
||||
|
||||
FsWatchesRecursive::
|
||||
/home/src/projects/a:
|
||||
@@ -747,7 +747,7 @@ src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 148
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 152
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/b/2/b-impl/b/node_modules/@types:
|
||||
@@ -843,18 +843,18 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Build dependencies
|
||||
|
||||
Input::
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 154
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.js] Inode:: 158
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.c = void 0;
|
||||
exports.c = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 155
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/c.d.ts] Inode:: 159
|
||||
export declare const c: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 156
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.js] Inode:: 160
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -874,14 +874,14 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
||||
__exportStar(require("./c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 157
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/index.d.ts] Inode:: 161
|
||||
export * from './c';
|
||||
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 158
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo] Inode:: 162
|
||||
{"root":["../src/c.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 159
|
||||
//// [/home/src/projects/c/3/c-impl/c/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 163
|
||||
{
|
||||
"root": [
|
||||
"../src/c.ts",
|
||||
@@ -891,18 +891,18 @@ export * from './c';
|
||||
"size": 68
|
||||
}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 161
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.js] Inode:: 165
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.a = void 0;
|
||||
exports.a = 'test';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 162
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/a.d.ts] Inode:: 166
|
||||
export declare const a: string;
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 163
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.js] Inode:: 167
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
@@ -923,15 +923,15 @@ __exportStar(require("./a"), exports);
|
||||
__exportStar(require("c"), exports);
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 164
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/index.d.ts] Inode:: 168
|
||||
export * from './a';
|
||||
export * from 'c';
|
||||
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 165
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo] Inode:: 169
|
||||
{"root":["../src/a.ts","../src/index.ts"],"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 166
|
||||
//// [/home/src/projects/a/1/a-impl/a/lib/tsconfig.tsbuildinfo.readable.baseline.txt] Inode:: 170
|
||||
{
|
||||
"root": [
|
||||
"../src/a.ts",
|
||||
@@ -1077,7 +1077,7 @@ src/index.ts
|
||||
|
||||
|
||||
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 148
|
||||
//// [/home/src/projects/b/2/b-impl/b/lib/index.js] file written with same contents Inode:: 152
|
||||
|
||||
PolledWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib/node_modules: *new*
|
||||
@@ -1105,9 +1105,9 @@ PolledWatches *deleted*::
|
||||
|
||||
FsWatches::
|
||||
/home/src/projects/a/1/a-impl/a/lib/a.d.ts: *new*
|
||||
{"inode":162}
|
||||
{"inode":166}
|
||||
/home/src/projects/a/1/a-impl/a/lib/index.d.ts: *new*
|
||||
{"inode":164}
|
||||
{"inode":168}
|
||||
/home/src/projects/a/1/a-impl/a/package.json:
|
||||
{"inode":24}
|
||||
/home/src/projects/b/2/b-impl/b/src/index.ts:
|
||||
@@ -1115,9 +1115,9 @@ FsWatches::
|
||||
/home/src/projects/b/2/b-impl/b/tsconfig.json:
|
||||
{"inode":36}
|
||||
/home/src/projects/c/3/c-impl/c/lib/c.d.ts: *new*
|
||||
{"inode":155}
|
||||
{"inode":159}
|
||||
/home/src/projects/c/3/c-impl/c/lib/index.d.ts: *new*
|
||||
{"inode":157}
|
||||
{"inode":161}
|
||||
/home/src/projects/c/3/c-impl/c/package.json: *new*
|
||||
{"inode":12}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts:
|
||||
|
||||
+2
-2
@@ -46,7 +46,7 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 103
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 107
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.x = void 0;
|
||||
@@ -132,7 +132,7 @@ CreatingProgramWith::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 103
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 107
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.y = exports.x = void 0;
|
||||
|
||||
+2
-2
@@ -46,7 +46,7 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 103
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 107
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.x = void 0;
|
||||
@@ -134,7 +134,7 @@ CreatingProgramWith::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 103
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 107
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.y = exports.x = void 0;
|
||||
|
||||
+8
-8
@@ -58,7 +58,7 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 104
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 108
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var foo_1 = require("./foo");
|
||||
@@ -114,7 +114,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Replace file with rename event that introduces error
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/foo.d.ts] Inode:: 105
|
||||
//// [/user/username/projects/myproject/foo.d.ts] Inode:: 109
|
||||
export function foo2(): string;
|
||||
|
||||
|
||||
@@ -163,7 +163,7 @@ FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"inode":4}
|
||||
/user/username/projects/myproject/foo.d.ts:
|
||||
{"inode":105} *new*
|
||||
{"inode":109} *new*
|
||||
/user/username/projects/myproject/main.ts:
|
||||
{"inode":5}
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
@@ -204,7 +204,7 @@ CreatingProgramWith::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 104
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 108
|
||||
|
||||
Timeout callback:: count: 0
|
||||
9: timerToInvalidateFailedLookupResolutions *deleted*
|
||||
@@ -238,7 +238,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Replace file with rename event that fixes error
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/foo.d.ts] Inode:: 106
|
||||
//// [/user/username/projects/myproject/foo.d.ts] Inode:: 110
|
||||
export function foo(): string;
|
||||
|
||||
|
||||
@@ -287,7 +287,7 @@ FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"inode":4}
|
||||
/user/username/projects/myproject/foo.d.ts:
|
||||
{"inode":106} *new*
|
||||
{"inode":110} *new*
|
||||
/user/username/projects/myproject/main.ts:
|
||||
{"inode":5}
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
@@ -295,7 +295,7 @@ FsWatches::
|
||||
|
||||
FsWatches *deleted*::
|
||||
/user/username/projects/myproject/foo.d.ts:
|
||||
{"inode":105}
|
||||
{"inode":109}
|
||||
|
||||
Timeout callback:: count: 2
|
||||
16: timerToUpdateProgram *new*
|
||||
@@ -318,7 +318,7 @@ CreatingProgramWith::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 104
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 108
|
||||
|
||||
Timeout callback:: count: 0
|
||||
18: timerToInvalidateFailedLookupResolutions *deleted*
|
||||
|
||||
+9
-9
@@ -54,12 +54,12 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /user/username/projects/node
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/foo.js] Inode:: 104
|
||||
//// [/user/username/projects/myproject/foo.js] Inode:: 108
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 105
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 109
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var foo_1 = require("./foo");
|
||||
@@ -113,7 +113,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Introduce error such that when callback happens file is already appeared
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/foo.ts] Inode:: 106
|
||||
//// [/user/username/projects/myproject/foo.ts] Inode:: 110
|
||||
export declare function foo2(): string;
|
||||
|
||||
|
||||
@@ -173,8 +173,8 @@ CreatingProgramWith::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/foo.js] file written with same contents Inode:: 104
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 105
|
||||
//// [/user/username/projects/myproject/foo.js] file written with same contents Inode:: 108
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 109
|
||||
|
||||
|
||||
Program root files: [
|
||||
@@ -205,7 +205,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Replace file with rename event that fixes error
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/foo.ts] Inode:: 107
|
||||
//// [/user/username/projects/myproject/foo.ts] Inode:: 111
|
||||
export declare function foo(): string;
|
||||
|
||||
|
||||
@@ -234,7 +234,7 @@ FsWatches::
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts:
|
||||
{"inode":13}
|
||||
/user/username/projects/myproject/foo.ts:
|
||||
{"inode":107} *new*
|
||||
{"inode":111} *new*
|
||||
/user/username/projects/myproject/main.ts:
|
||||
{"inode":5}
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
@@ -263,8 +263,8 @@ CreatingProgramWith::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/foo.js] file written with same contents Inode:: 104
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 105
|
||||
//// [/user/username/projects/myproject/foo.js] file written with same contents Inode:: 108
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 109
|
||||
|
||||
|
||||
Program root files: [
|
||||
|
||||
+8
-8
@@ -58,7 +58,7 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /user/username/projects/myprojec
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 104
|
||||
//// [/user/username/projects/myproject/main.js] Inode:: 108
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
var foo_1 = require("./foo");
|
||||
@@ -114,7 +114,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Replace file with rename event that introduces error
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/foo.d.ts] Inode:: 105
|
||||
//// [/user/username/projects/myproject/foo.d.ts] Inode:: 109
|
||||
export function foo2(): string;
|
||||
|
||||
|
||||
@@ -151,7 +151,7 @@ FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"inode":4}
|
||||
/user/username/projects/myproject/foo.d.ts:
|
||||
{"inode":105} *new*
|
||||
{"inode":109} *new*
|
||||
/user/username/projects/myproject/main.ts:
|
||||
{"inode":5}
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
@@ -192,7 +192,7 @@ CreatingProgramWith::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 104
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 108
|
||||
|
||||
Timeout callback:: count: 0
|
||||
5: timerToInvalidateFailedLookupResolutions *deleted*
|
||||
@@ -226,7 +226,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Replace file with rename event that fixes error
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/foo.d.ts] Inode:: 106
|
||||
//// [/user/username/projects/myproject/foo.d.ts] Inode:: 110
|
||||
export function foo(): string;
|
||||
|
||||
|
||||
@@ -263,7 +263,7 @@ FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"inode":4}
|
||||
/user/username/projects/myproject/foo.d.ts:
|
||||
{"inode":106} *new*
|
||||
{"inode":110} *new*
|
||||
/user/username/projects/myproject/main.ts:
|
||||
{"inode":5}
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
@@ -271,7 +271,7 @@ FsWatches::
|
||||
|
||||
FsWatches *deleted*::
|
||||
/user/username/projects/myproject/foo.d.ts:
|
||||
{"inode":105}
|
||||
{"inode":109}
|
||||
|
||||
Timeout callback:: count: 2
|
||||
9: timerToUpdateProgram *new*
|
||||
@@ -294,7 +294,7 @@ CreatingProgramWith::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 104
|
||||
//// [/user/username/projects/myproject/main.js] file written with same contents Inode:: 108
|
||||
|
||||
Timeout callback:: count: 0
|
||||
10: timerToInvalidateFailedLookupResolutions *deleted*
|
||||
|
||||
+4
-4
@@ -35,7 +35,7 @@ Output::
|
||||
|
||||
|
||||
|
||||
//// [/a/username/projects/project/src/file1.js] Inode:: 104
|
||||
//// [/a/username/projects/project/src/file1.js] Inode:: 108
|
||||
|
||||
|
||||
|
||||
@@ -75,7 +75,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Rename file1 to file2
|
||||
|
||||
Input::
|
||||
//// [/a/username/projects/project/src/file2.ts] Inode:: 105
|
||||
//// [/a/username/projects/project/src/file2.ts] Inode:: 109
|
||||
|
||||
|
||||
//// [/a/username/projects/project/src/file1.ts] deleted
|
||||
@@ -129,7 +129,7 @@ Output::
|
||||
|
||||
|
||||
|
||||
//// [/a/username/projects/project/src/file2.js] Inode:: 106
|
||||
//// [/a/username/projects/project/src/file2.js] Inode:: 110
|
||||
|
||||
|
||||
|
||||
@@ -139,7 +139,7 @@ PolledWatches *deleted*::
|
||||
|
||||
FsWatches::
|
||||
/a/username/projects/project/src/file2.ts: *new*
|
||||
{"inode":105}
|
||||
{"inode":109}
|
||||
/a/username/projects/project/tsconfig.json:
|
||||
{"inode":7}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts:
|
||||
|
||||
+4
-4
@@ -35,7 +35,7 @@ Output::
|
||||
|
||||
|
||||
|
||||
//// [/a/username/projects/project/src/file1.js] Inode:: 104
|
||||
//// [/a/username/projects/project/src/file1.js] Inode:: 108
|
||||
|
||||
|
||||
|
||||
@@ -82,7 +82,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Rename file1 to file2
|
||||
|
||||
Input::
|
||||
//// [/a/username/projects/project/src/file2.ts] Inode:: 105
|
||||
//// [/a/username/projects/project/src/file2.ts] Inode:: 109
|
||||
|
||||
|
||||
//// [/a/username/projects/project/src/file1.ts] deleted
|
||||
@@ -129,7 +129,7 @@ Output::
|
||||
|
||||
|
||||
|
||||
//// [/a/username/projects/project/src/file2.js] Inode:: 106
|
||||
//// [/a/username/projects/project/src/file2.js] Inode:: 110
|
||||
|
||||
|
||||
|
||||
@@ -149,7 +149,7 @@ FsWatches::
|
||||
/a/username/projects/project/src:
|
||||
{"inode":5}
|
||||
/a/username/projects/project/src/file2.ts: *new*
|
||||
{"inode":105}
|
||||
{"inode":109}
|
||||
/a/username/projects/project/tsconfig.json:
|
||||
{"inode":7}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts:
|
||||
|
||||
+4
-4
@@ -35,7 +35,7 @@ Output::
|
||||
|
||||
|
||||
|
||||
//// [/a/username/projects/project/src/file1.js] Inode:: 104
|
||||
//// [/a/username/projects/project/src/file1.js] Inode:: 108
|
||||
|
||||
|
||||
|
||||
@@ -82,7 +82,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: Rename file1 to file2
|
||||
|
||||
Input::
|
||||
//// [/a/username/projects/project/src/file2.ts] Inode:: 105
|
||||
//// [/a/username/projects/project/src/file2.ts] Inode:: 109
|
||||
|
||||
|
||||
//// [/a/username/projects/project/src/file1.ts] deleted
|
||||
@@ -129,7 +129,7 @@ Output::
|
||||
|
||||
|
||||
|
||||
//// [/a/username/projects/project/src/file2.js] Inode:: 106
|
||||
//// [/a/username/projects/project/src/file2.js] Inode:: 110
|
||||
|
||||
|
||||
|
||||
@@ -149,7 +149,7 @@ PolledWatches *deleted*::
|
||||
|
||||
FsWatches::
|
||||
/a/username/projects/project/src/file2.ts: *new*
|
||||
{"inode":105}
|
||||
{"inode":109}
|
||||
/a/username/projects/project/tsconfig.json:
|
||||
{"inode":7}
|
||||
/home/src/tslibs/TS/Lib/lib.d.ts:
|
||||
|
||||
+2
-2
@@ -100,7 +100,7 @@ DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject 1 {"synchron
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject 1 {"synchronousWatchDirectory":true} Wild card directory
|
||||
|
||||
|
||||
//// [/home/user/projects/myproject/src/file.js] Inode:: 114
|
||||
//// [/home/user/projects/myproject/src/file.js] Inode:: 118
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
@@ -315,7 +315,7 @@ FileWatcher:: Close:: WatchInfo: /home/user/projects/package.json 2000 {"synchro
|
||||
|
||||
|
||||
|
||||
//// [/home/user/projects/myproject/src/file.js] file written with same contents Inode:: 114
|
||||
//// [/home/user/projects/myproject/src/file.js] file written with same contents Inode:: 118
|
||||
|
||||
PolledWatches::
|
||||
/home/user/projects/myproject/node_modules/@types:
|
||||
|
||||
+2
-2
@@ -95,7 +95,7 @@ DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject 1 undefined
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/user/projects/myproject 1 undefined Wild card directory
|
||||
|
||||
|
||||
//// [/home/user/projects/myproject/src/file.js] Inode:: 114
|
||||
//// [/home/user/projects/myproject/src/file.js] Inode:: 118
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
@@ -321,7 +321,7 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /home/user/projects/myproject/no
|
||||
sysLog:: Elapsed:: *ms:: onTimerToUpdateChildWatches:: 0 undefined
|
||||
|
||||
|
||||
//// [/home/user/projects/myproject/src/file.js] file written with same contents Inode:: 114
|
||||
//// [/home/user/projects/myproject/src/file.js] file written with same contents Inode:: 118
|
||||
|
||||
PolledWatches::
|
||||
/home/user/projects/myproject/node_modules/@types:
|
||||
|
||||
+10
-10
@@ -38,14 +38,14 @@ Output::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/dist/file2.js] Inode:: 106
|
||||
//// [/user/username/projects/myproject/dist/file2.js] Inode:: 110
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.x = void 0;
|
||||
exports.x = 10;
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/dist/file1.js] Inode:: 107
|
||||
//// [/user/username/projects/myproject/dist/file1.js] Inode:: 111
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
|
||||
@@ -63,7 +63,7 @@ FsWatches::
|
||||
/user/username/projects/myproject: *new*
|
||||
{"inode":4}
|
||||
/user/username/projects/myproject/dist: *new*
|
||||
{"inode":105}
|
||||
{"inode":109}
|
||||
/user/username/projects/myproject/src: *new*
|
||||
{"inode":5}
|
||||
/user/username/projects/myproject/src/file1.ts: *new*
|
||||
@@ -110,7 +110,7 @@ exitCode:: ExitStatus.undefined
|
||||
Change:: rename the file
|
||||
|
||||
Input::
|
||||
//// [/user/username/projects/myproject/src/renamed.ts] Inode:: 108
|
||||
//// [/user/username/projects/myproject/src/renamed.ts] Inode:: 112
|
||||
export const x = 10;
|
||||
|
||||
//// [/user/username/projects/myproject/src/file2.ts] deleted
|
||||
@@ -133,7 +133,7 @@ FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"inode":4}
|
||||
/user/username/projects/myproject/dist:
|
||||
{"inode":105}
|
||||
{"inode":109}
|
||||
/user/username/projects/myproject/src:
|
||||
{"inode":5}
|
||||
/user/username/projects/myproject/src/file1.ts:
|
||||
@@ -167,7 +167,7 @@ Output::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/dist/file1.js] file written with same contents Inode:: 107
|
||||
//// [/user/username/projects/myproject/dist/file1.js] file written with same contents Inode:: 111
|
||||
|
||||
PolledWatches::
|
||||
/user/username/projects/myproject/node_modules/@types:
|
||||
@@ -187,7 +187,7 @@ FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"inode":4}
|
||||
/user/username/projects/myproject/dist:
|
||||
{"inode":105}
|
||||
{"inode":109}
|
||||
/user/username/projects/myproject/src:
|
||||
{"inode":5}
|
||||
/user/username/projects/myproject/src/file1.ts:
|
||||
@@ -250,7 +250,7 @@ Output::
|
||||
|
||||
|
||||
|
||||
//// [/user/username/projects/myproject/dist/renamed.js] Inode:: 109
|
||||
//// [/user/username/projects/myproject/dist/renamed.js] Inode:: 113
|
||||
"use strict";
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.x = void 0;
|
||||
@@ -274,13 +274,13 @@ FsWatches::
|
||||
/user/username/projects/myproject:
|
||||
{"inode":4}
|
||||
/user/username/projects/myproject/dist:
|
||||
{"inode":105}
|
||||
{"inode":109}
|
||||
/user/username/projects/myproject/src:
|
||||
{"inode":5}
|
||||
/user/username/projects/myproject/src/file1.ts:
|
||||
{"inode":6}
|
||||
/user/username/projects/myproject/src/renamed.ts: *new*
|
||||
{"inode":108}
|
||||
{"inode":112}
|
||||
/user/username/projects/myproject/tsconfig.json:
|
||||
{"inode":8}
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user