mirror of
https://github.com/microsoft/TypeScript.git
synced 2026-02-15 11:35:42 -06:00
Set lib file content instead of changing target
This commit is contained in:
parent
081a381124
commit
d3c08b2d22
@ -70,9 +70,9 @@ export function getFsContentsForNode10Result(): FsContents {
|
||||
import { foo2 } from "foo2";
|
||||
import { bar2 } from "bar2";
|
||||
`,
|
||||
"/a/lib/lib.es2022.full.d.ts": libFile.content,
|
||||
"/home/src/projects/project/tsconfig.json": JSON.stringify({
|
||||
compilerOptions: {
|
||||
target: "es5",
|
||||
module: "node16",
|
||||
moduleResolution: "node16",
|
||||
traceResolution: true,
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@ -123,8 +123,21 @@ import { foo2 } from "foo2";
|
||||
import { bar2 } from "bar2";
|
||||
|
||||
|
||||
//// [/a/lib/lib.es2022.full.d.ts]
|
||||
/// <reference no-default-lib="true"/>
|
||||
interface Boolean {}
|
||||
interface Function {}
|
||||
interface CallableFunction {}
|
||||
interface NewableFunction {}
|
||||
interface IArguments {}
|
||||
interface Number { toExponential: any; }
|
||||
interface Object {}
|
||||
interface RegExp {}
|
||||
interface String { charAt: any; }
|
||||
interface Array<T> { length: number; [n: number]: T; }
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.json]
|
||||
{"compilerOptions":{"target":"es5","module":"node16","moduleResolution":"node16","traceResolution":true,"incremental":true,"strict":true,"types":[]},"files":["index.mts"]}
|
||||
{"compilerOptions":{"module":"node16","moduleResolution":"node16","traceResolution":true,"incremental":true,"strict":true,"types":[]},"files":["index.mts"]}
|
||||
|
||||
//// [/a/lib/lib.d.ts]
|
||||
/// <reference no-default-lib="true"/>
|
||||
@ -142,14 +155,14 @@ interface Array<T> { length: number; [n: number]: T; }
|
||||
|
||||
/a/lib/tsc.js -w --extendedDiagnostics
|
||||
Output::
|
||||
[[90m12:01:13 AM[0m] Starting compilation in watch mode...
|
||||
[[90m12:01:15 AM[0m] Starting compilation in watch mode...
|
||||
|
||||
Current directory: /home/src/projects/project CaseSensitiveFileNames: false
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/projects/project/tsconfig.json 2000 undefined Config file
|
||||
Synchronizing program
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
FileWatcher:: Added:: WatchInfo: /home/src/projects/project/index.mts 250 undefined Source file
|
||||
======== Resolving module 'foo' from '/home/src/projects/project/index.mts'. ========
|
||||
Explicitly specified module resolution kind: 'Node16'.
|
||||
@ -322,7 +335,7 @@ FileWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules/@types/
|
||||
File '/a/lib/package.json' does not exist.
|
||||
File '/a/package.json' does not exist.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 250 undefined Source file
|
||||
FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2022.full.d.ts 250 undefined Source file
|
||||
DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Failed Lookup Locations
|
||||
Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Failed Lookup Locations
|
||||
DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations
|
||||
@ -355,7 +368,7 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/tscon
|
||||
[7m2[0m import { bar } from "bar";
|
||||
[7m [0m [91m ~~~~~[0m
|
||||
|
||||
[[90m12:01:18 AM[0m] Found 2 errors. Watching for file changes.
|
||||
[[90m12:01:20 AM[0m] Found 2 errors. Watching for file changes.
|
||||
|
||||
DirectoryWatcher:: Triggered with /home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt :: WatchInfo: /home/src/projects/project 0 undefined Failed Lookup Locations
|
||||
Scheduling invalidateFailedLookup, Cancelled earlier one
|
||||
@ -363,22 +376,22 @@ Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/tscon
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: Not
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
|
||||
Semantic diagnostics in builder refreshed for::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
|
||||
Shape signatures in builder refreshed for::
|
||||
/a/lib/lib.d.ts (used version)
|
||||
/a/lib/lib.es2022.full.d.ts (used version)
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts (used version)
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts (used version)
|
||||
/home/src/projects/project/index.mts (used version)
|
||||
@ -388,7 +401,7 @@ PolledWatches::
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/a/lib/lib.d.ts: *new*
|
||||
/a/lib/lib.es2022.full.d.ts: *new*
|
||||
{}
|
||||
/home/src/projects: *new*
|
||||
{}
|
||||
@ -426,13 +439,13 @@ export {};
|
||||
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"program":{"fileNames":["../../../../a/lib/lib.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","impliedFormat":99}],"root":[4],"options":{"module":100,"strict":true,"target":1},"fileIdsList":[[2,3]],"referencedMap":[[4,1]],"exportedModulesMap":[[4,1]],"semanticDiagnosticsPerFile":[1,[4,[{"file":"./index.mts","start":20,"length":5,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'foo'. '/home/src/projects/project/node_modules/foo/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"foo","mode":99}}]}},{"file":"./index.mts","start":47,"length":5,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'bar'. '/home/src/projects/project/node_modules/bar/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"bar","mode":99}}]}}]],3,2]},"version":"FakeTSVersion"}
|
||||
{"program":{"fileNames":["../../../../a/lib/lib.es2022.full.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","impliedFormat":99}],"root":[4],"options":{"module":100,"strict":true},"fileIdsList":[[2,3]],"referencedMap":[[4,1]],"exportedModulesMap":[[4,1]],"semanticDiagnosticsPerFile":[1,[4,[{"file":"./index.mts","start":20,"length":5,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'foo'. '/home/src/projects/project/node_modules/foo/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"foo","mode":99}}]}},{"file":"./index.mts","start":47,"length":5,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'bar'. '/home/src/projects/project/node_modules/bar/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"bar","mode":99}}]}}]],3,2]},"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"program": {
|
||||
"fileNames": [
|
||||
"../../../../a/lib/lib.d.ts",
|
||||
"../../../../a/lib/lib.es2022.full.d.ts",
|
||||
"./node_modules/foo2/index.d.ts",
|
||||
"./node_modules/@types/bar2/index.d.ts",
|
||||
"./index.mts"
|
||||
@ -444,7 +457,7 @@ export {};
|
||||
]
|
||||
],
|
||||
"fileInfos": {
|
||||
"../../../../a/lib/lib.d.ts": {
|
||||
"../../../../a/lib/lib.es2022.full.d.ts": {
|
||||
"original": {
|
||||
"version": "-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }",
|
||||
"affectsGlobalScope": true,
|
||||
@ -491,8 +504,7 @@ export {};
|
||||
],
|
||||
"options": {
|
||||
"module": 100,
|
||||
"strict": true,
|
||||
"target": 1
|
||||
"strict": true
|
||||
},
|
||||
"referencedMap": {
|
||||
"./index.mts": [
|
||||
@ -507,7 +519,7 @@ export {};
|
||||
]
|
||||
},
|
||||
"semanticDiagnosticsPerFile": [
|
||||
"../../../../a/lib/lib.d.ts",
|
||||
"../../../../a/lib/lib.es2022.full.d.ts",
|
||||
[
|
||||
"./index.mts",
|
||||
[
|
||||
@ -558,7 +570,7 @@ export {};
|
||||
]
|
||||
},
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1745
|
||||
"size": 1746
|
||||
}
|
||||
|
||||
|
||||
@ -580,11 +592,11 @@ Scheduling invalidateFailedLookup, Cancelled earlier one
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:01:22 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:01:24 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -690,15 +702,15 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
[7m2[0m import { bar } from "bar";
|
||||
[7m [0m [91m ~~~~~[0m
|
||||
|
||||
[[90m12:01:23 AM[0m] Found 2 errors. Watching for file changes.
|
||||
[[90m12:01:25 AM[0m] Found 2 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
@ -728,11 +740,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:01:26 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:01:28 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -819,15 +831,15 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
[7m2[0m import { bar } from "bar";
|
||||
[7m [0m [91m ~~~~~[0m
|
||||
|
||||
[[90m12:01:27 AM[0m] Found 2 errors. Watching for file changes.
|
||||
[[90m12:01:29 AM[0m] Found 2 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
@ -859,11 +871,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:01:30 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:01:32 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -956,15 +968,15 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
[7m2[0m import { bar } from "bar";
|
||||
[7m [0m [91m ~~~~~[0m
|
||||
|
||||
[[90m12:01:31 AM[0m] Found 2 errors. Watching for file changes.
|
||||
[[90m12:01:33 AM[0m] Found 2 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
@ -996,11 +1008,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:01:35 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:01:37 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -1074,15 +1086,15 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
[7m2[0m import { bar } from "bar";
|
||||
[7m [0m [91m ~~~~~[0m
|
||||
|
||||
[[90m12:01:36 AM[0m] Found 2 errors. Watching for file changes.
|
||||
[[90m12:01:38 AM[0m] Found 2 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
@ -1124,11 +1136,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms FileWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar/package.json 1:: WatchInfo: /home/src/projects/project/node_modules/@types/bar/package.json 2000 undefined File location affecting resolution
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:01:40 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:01:42 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -1179,15 +1191,15 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
[7m1[0m import { foo } from "foo";
|
||||
[7m [0m [91m ~~~~~[0m
|
||||
|
||||
[[90m12:01:47 AM[0m] Found 1 error. Watching for file changes.
|
||||
[[90m12:01:49 AM[0m] Found 1 error. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts
|
||||
@ -1206,7 +1218,7 @@ PolledWatches::
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/a/lib/lib.d.ts:
|
||||
/a/lib/lib.es2022.full.d.ts:
|
||||
{}
|
||||
/home/src/projects:
|
||||
{}
|
||||
@ -1243,13 +1255,13 @@ exitCode:: ExitStatus.undefined
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"program":{"fileNames":["../../../../a/lib/lib.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"module":100,"strict":true,"target":1},"fileIdsList":[[2,3,4]],"referencedMap":[[5,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,[5,[{"file":"./index.mts","start":20,"length":5,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'foo'. '/home/src/projects/project/node_modules/foo/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"foo","mode":99}}]}}]],2,4,3]},"version":"FakeTSVersion"}
|
||||
{"program":{"fileNames":["../../../../a/lib/lib.es2022.full.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"module":100,"strict":true},"fileIdsList":[[2,3,4]],"referencedMap":[[5,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,[5,[{"file":"./index.mts","start":20,"length":5,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'foo'. '/home/src/projects/project/node_modules/foo/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"foo","mode":99}}]}}]],2,4,3]},"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"program": {
|
||||
"fileNames": [
|
||||
"../../../../a/lib/lib.d.ts",
|
||||
"../../../../a/lib/lib.es2022.full.d.ts",
|
||||
"./node_modules/@types/bar/index.d.ts",
|
||||
"./node_modules/foo2/index.d.ts",
|
||||
"./node_modules/@types/bar2/index.d.ts",
|
||||
@ -1263,7 +1275,7 @@ exitCode:: ExitStatus.undefined
|
||||
]
|
||||
],
|
||||
"fileInfos": {
|
||||
"../../../../a/lib/lib.d.ts": {
|
||||
"../../../../a/lib/lib.es2022.full.d.ts": {
|
||||
"original": {
|
||||
"version": "-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }",
|
||||
"affectsGlobalScope": true,
|
||||
@ -1320,8 +1332,7 @@ exitCode:: ExitStatus.undefined
|
||||
],
|
||||
"options": {
|
||||
"module": 100,
|
||||
"strict": true,
|
||||
"target": 1
|
||||
"strict": true
|
||||
},
|
||||
"referencedMap": {
|
||||
"./index.mts": [
|
||||
@ -1332,7 +1343,7 @@ exitCode:: ExitStatus.undefined
|
||||
},
|
||||
"exportedModulesMap": {},
|
||||
"semanticDiagnosticsPerFile": [
|
||||
"../../../../a/lib/lib.d.ts",
|
||||
"../../../../a/lib/lib.es2022.full.d.ts",
|
||||
[
|
||||
"./index.mts",
|
||||
[
|
||||
@ -1364,7 +1375,7 @@ exitCode:: ExitStatus.undefined
|
||||
]
|
||||
},
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1581
|
||||
"size": 1582
|
||||
}
|
||||
|
||||
|
||||
@ -1400,11 +1411,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms FileWatcher:: Triggered with /home/src/projects/project/node_modules/foo/package.json 1:: WatchInfo: /home/src/projects/project/node_modules/foo/package.json 2000 undefined File location affecting resolution
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:01:55 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:01:57 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -1443,15 +1454,15 @@ File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations
|
||||
Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /home/src/projects/node_modules 1 undefined Failed Lookup Locations
|
||||
[[90m12:02:02 AM[0m] Found 0 errors. Watching for file changes.
|
||||
[[90m12:02:04 AM[0m] Found 0 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts
|
||||
@ -1471,7 +1482,7 @@ PolledWatches *deleted*::
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/a/lib/lib.d.ts:
|
||||
/a/lib/lib.es2022.full.d.ts:
|
||||
{}
|
||||
/home/src/projects:
|
||||
{}
|
||||
@ -1510,13 +1521,13 @@ exitCode:: ExitStatus.undefined
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"program":{"fileNames":["../../../../a/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[6],"options":{"module":100,"strict":true,"target":1},"fileIdsList":[[2,3,4,5]],"referencedMap":[[6,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,6,3,5,2,4]},"version":"FakeTSVersion"}
|
||||
{"program":{"fileNames":["../../../../a/lib/lib.es2022.full.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./node_modules/@types/bar2/index.d.ts","./index.mts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-7439170493-export declare const bar2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[6],"options":{"module":100,"strict":true},"fileIdsList":[[2,3,4,5]],"referencedMap":[[6,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,6,3,5,2,4]},"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"program": {
|
||||
"fileNames": [
|
||||
"../../../../a/lib/lib.d.ts",
|
||||
"../../../../a/lib/lib.es2022.full.d.ts",
|
||||
"./node_modules/foo/index.d.ts",
|
||||
"./node_modules/@types/bar/index.d.ts",
|
||||
"./node_modules/foo2/index.d.ts",
|
||||
@ -1532,7 +1543,7 @@ exitCode:: ExitStatus.undefined
|
||||
]
|
||||
],
|
||||
"fileInfos": {
|
||||
"../../../../a/lib/lib.d.ts": {
|
||||
"../../../../a/lib/lib.es2022.full.d.ts": {
|
||||
"original": {
|
||||
"version": "-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }",
|
||||
"affectsGlobalScope": true,
|
||||
@ -1598,8 +1609,7 @@ exitCode:: ExitStatus.undefined
|
||||
],
|
||||
"options": {
|
||||
"module": 100,
|
||||
"strict": true,
|
||||
"target": 1
|
||||
"strict": true
|
||||
},
|
||||
"referencedMap": {
|
||||
"./index.mts": [
|
||||
@ -1611,7 +1621,7 @@ exitCode:: ExitStatus.undefined
|
||||
},
|
||||
"exportedModulesMap": {},
|
||||
"semanticDiagnosticsPerFile": [
|
||||
"../../../../a/lib/lib.d.ts",
|
||||
"../../../../a/lib/lib.es2022.full.d.ts",
|
||||
"./index.mts",
|
||||
"./node_modules/@types/bar/index.d.ts",
|
||||
"./node_modules/@types/bar2/index.d.ts",
|
||||
@ -1620,7 +1630,7 @@ exitCode:: ExitStatus.undefined
|
||||
]
|
||||
},
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1372
|
||||
"size": 1373
|
||||
}
|
||||
|
||||
|
||||
@ -1653,11 +1663,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms FileWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/package.json 1:: WatchInfo: /home/src/projects/project/node_modules/@types/bar2/package.json 2000 undefined File location affecting resolution
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:02:09 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:02:11 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -1751,15 +1761,15 @@ Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/node_modu
|
||||
[7m4[0m import { bar2 } from "bar2";
|
||||
[7m [0m [91m ~~~~~~[0m
|
||||
|
||||
[[90m12:02:16 AM[0m] Found 1 error. Watching for file changes.
|
||||
[[90m12:02:18 AM[0m] Found 1 error. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts
|
||||
@ -1776,7 +1786,7 @@ PolledWatches::
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/a/lib/lib.d.ts:
|
||||
/a/lib/lib.es2022.full.d.ts:
|
||||
{}
|
||||
/home/src/projects:
|
||||
{}
|
||||
@ -1817,13 +1827,13 @@ exitCode:: ExitStatus.undefined
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"program":{"fileNames":["../../../../a/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./index.mts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"module":100,"strict":true,"target":1},"fileIdsList":[[2,3,4]],"referencedMap":[[5,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,[5,[{"file":"./index.mts","start":104,"length":6,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'bar2'. '/home/src/projects/project/node_modules/bar2/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"bar2","mode":99}}]}}]],3,2,4]},"version":"FakeTSVersion"}
|
||||
{"program":{"fileNames":["../../../../a/lib/lib.es2022.full.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./node_modules/foo2/index.d.ts","./index.mts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-1622383150-export declare const foo2: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[5],"options":{"module":100,"strict":true},"fileIdsList":[[2,3,4]],"referencedMap":[[5,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,[5,[{"file":"./index.mts","start":104,"length":6,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'bar2'. '/home/src/projects/project/node_modules/bar2/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"bar2","mode":99}}]}}]],3,2,4]},"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"program": {
|
||||
"fileNames": [
|
||||
"../../../../a/lib/lib.d.ts",
|
||||
"../../../../a/lib/lib.es2022.full.d.ts",
|
||||
"./node_modules/foo/index.d.ts",
|
||||
"./node_modules/@types/bar/index.d.ts",
|
||||
"./node_modules/foo2/index.d.ts",
|
||||
@ -1837,7 +1847,7 @@ exitCode:: ExitStatus.undefined
|
||||
]
|
||||
],
|
||||
"fileInfos": {
|
||||
"../../../../a/lib/lib.d.ts": {
|
||||
"../../../../a/lib/lib.es2022.full.d.ts": {
|
||||
"original": {
|
||||
"version": "-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }",
|
||||
"affectsGlobalScope": true,
|
||||
@ -1894,8 +1904,7 @@ exitCode:: ExitStatus.undefined
|
||||
],
|
||||
"options": {
|
||||
"module": 100,
|
||||
"strict": true,
|
||||
"target": 1
|
||||
"strict": true
|
||||
},
|
||||
"referencedMap": {
|
||||
"./index.mts": [
|
||||
@ -1906,7 +1915,7 @@ exitCode:: ExitStatus.undefined
|
||||
},
|
||||
"exportedModulesMap": {},
|
||||
"semanticDiagnosticsPerFile": [
|
||||
"../../../../a/lib/lib.d.ts",
|
||||
"../../../../a/lib/lib.es2022.full.d.ts",
|
||||
[
|
||||
"./index.mts",
|
||||
[
|
||||
@ -1938,7 +1947,7 @@ exitCode:: ExitStatus.undefined
|
||||
]
|
||||
},
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1576
|
||||
"size": 1577
|
||||
}
|
||||
|
||||
|
||||
@ -1973,11 +1982,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms FileWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/package.json 1:: WatchInfo: /home/src/projects/project/node_modules/foo2/package.json 2000 undefined File location affecting resolution
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:02:24 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:02:26 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -2053,15 +2062,15 @@ FileWatcher:: Close:: WatchInfo: /home/src/projects/project/node_modules/foo2/in
|
||||
[7m4[0m import { bar2 } from "bar2";
|
||||
[7m [0m [91m ~~~~~~[0m
|
||||
|
||||
[[90m12:02:31 AM[0m] Found 2 errors. Watching for file changes.
|
||||
[[90m12:02:33 AM[0m] Found 2 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
@ -2077,7 +2086,7 @@ PolledWatches::
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/a/lib/lib.d.ts:
|
||||
/a/lib/lib.es2022.full.d.ts:
|
||||
{}
|
||||
/home/src/projects:
|
||||
{}
|
||||
@ -2116,13 +2125,13 @@ exitCode:: ExitStatus.undefined
|
||||
|
||||
//// [/home/src/projects/project/index.mjs] file written with same contents
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo]
|
||||
{"program":{"fileNames":["../../../../a/lib/lib.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./index.mts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[4],"options":{"module":100,"strict":true,"target":1},"fileIdsList":[[2,3]],"referencedMap":[[4,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,[4,[{"file":"./index.mts","start":75,"length":6,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'foo2'. '/home/src/projects/project/node_modules/foo2/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"foo2","mode":99}}]}},{"file":"./index.mts","start":104,"length":6,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'bar2'. '/home/src/projects/project/node_modules/bar2/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"bar2","mode":99}}]}}]],3,2]},"version":"FakeTSVersion"}
|
||||
{"program":{"fileNames":["../../../../a/lib/lib.es2022.full.d.ts","./node_modules/foo/index.d.ts","./node_modules/@types/bar/index.d.ts","./index.mts"],"fileInfos":[{"version":"-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }","affectsGlobalScope":true,"impliedFormat":1},{"version":"-5214938848-export declare const foo: number;","impliedFormat":1},{"version":"-9556021903-export declare const bar: number;","impliedFormat":1},{"version":"-4806968175-import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n","signature":"-3531856636-export {};\n","impliedFormat":99}],"root":[4],"options":{"module":100,"strict":true},"fileIdsList":[[2,3]],"referencedMap":[[4,1]],"exportedModulesMap":[],"semanticDiagnosticsPerFile":[1,[4,[{"file":"./index.mts","start":75,"length":6,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'foo2'. '/home/src/projects/project/node_modules/foo2/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"foo2","mode":99}}]}},{"file":"./index.mts","start":104,"length":6,"code":7016,"category":1,"messageText":{"messageText":"Could not find a declaration file for module 'bar2'. '/home/src/projects/project/node_modules/bar2/index.mjs' implicitly has an 'any' type.","category":1,"code":7016,"next":[{"info":{"moduleReference":"bar2","mode":99}}]}}]],3,2]},"version":"FakeTSVersion"}
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.tsbuildinfo.readable.baseline.txt]
|
||||
{
|
||||
"program": {
|
||||
"fileNames": [
|
||||
"../../../../a/lib/lib.d.ts",
|
||||
"../../../../a/lib/lib.es2022.full.d.ts",
|
||||
"./node_modules/foo/index.d.ts",
|
||||
"./node_modules/@types/bar/index.d.ts",
|
||||
"./index.mts"
|
||||
@ -2134,7 +2143,7 @@ exitCode:: ExitStatus.undefined
|
||||
]
|
||||
],
|
||||
"fileInfos": {
|
||||
"../../../../a/lib/lib.d.ts": {
|
||||
"../../../../a/lib/lib.es2022.full.d.ts": {
|
||||
"original": {
|
||||
"version": "-7698705165-/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }",
|
||||
"affectsGlobalScope": true,
|
||||
@ -2182,8 +2191,7 @@ exitCode:: ExitStatus.undefined
|
||||
],
|
||||
"options": {
|
||||
"module": 100,
|
||||
"strict": true,
|
||||
"target": 1
|
||||
"strict": true
|
||||
},
|
||||
"referencedMap": {
|
||||
"./index.mts": [
|
||||
@ -2193,7 +2201,7 @@ exitCode:: ExitStatus.undefined
|
||||
},
|
||||
"exportedModulesMap": {},
|
||||
"semanticDiagnosticsPerFile": [
|
||||
"../../../../a/lib/lib.d.ts",
|
||||
"../../../../a/lib/lib.es2022.full.d.ts",
|
||||
[
|
||||
"./index.mts",
|
||||
[
|
||||
@ -2244,7 +2252,7 @@ exitCode:: ExitStatus.undefined
|
||||
]
|
||||
},
|
||||
"version": "FakeTSVersion",
|
||||
"size": 1782
|
||||
"size": 1783
|
||||
}
|
||||
|
||||
|
||||
@ -2266,11 +2274,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:02:36 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:02:38 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -2376,15 +2384,15 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
[7m4[0m import { bar2 } from "bar2";
|
||||
[7m [0m [91m ~~~~~~[0m
|
||||
|
||||
[[90m12:02:37 AM[0m] Found 2 errors. Watching for file changes.
|
||||
[[90m12:02:39 AM[0m] Found 2 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
@ -2414,11 +2422,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:02:40 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:02:42 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -2505,15 +2513,15 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
[7m4[0m import { bar2 } from "bar2";
|
||||
[7m [0m [91m ~~~~~~[0m
|
||||
|
||||
[[90m12:02:41 AM[0m] Found 2 errors. Watching for file changes.
|
||||
[[90m12:02:43 AM[0m] Found 2 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
@ -2545,11 +2553,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/@types/bar2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:02:44 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:02:46 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -2642,15 +2650,15 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
[7m4[0m import { bar2 } from "bar2";
|
||||
[7m [0m [91m ~~~~~~[0m
|
||||
|
||||
[[90m12:02:45 AM[0m] Found 2 errors. Watching for file changes.
|
||||
[[90m12:02:47 AM[0m] Found 2 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
@ -2682,11 +2690,11 @@ Scheduling invalidateFailedLookup
|
||||
Elapsed:: *ms DirectoryWatcher:: Triggered with /home/src/projects/project/node_modules/foo2/index.d.ts :: WatchInfo: /home/src/projects/project/node_modules 1 undefined Failed Lookup Locations
|
||||
Scheduling update
|
||||
Synchronizing program
|
||||
[[90m12:02:49 AM[0m] File change detected. Starting incremental compilation...
|
||||
[[90m12:02:51 AM[0m] File change detected. Starting incremental compilation...
|
||||
|
||||
CreatingProgramWith::
|
||||
roots: ["/home/src/projects/project/index.mts"]
|
||||
options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
File '/a/lib/package.json' does not exist according to earlier cached lookups.
|
||||
File '/a/package.json' does not exist according to earlier cached lookups.
|
||||
File '/package.json' does not exist according to earlier cached lookups.
|
||||
@ -2760,15 +2768,15 @@ File '/package.json' does not exist according to earlier cached lookups.
|
||||
[7m4[0m import { bar2 } from "bar2";
|
||||
[7m [0m [91m ~~~~~~[0m
|
||||
|
||||
[[90m12:02:50 AM[0m] Found 2 errors. Watching for file changes.
|
||||
[[90m12:02:52 AM[0m] Found 2 errors. Watching for file changes.
|
||||
|
||||
|
||||
|
||||
Program root files: ["/home/src/projects/project/index.mts"]
|
||||
Program options: {"target":1,"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program options: {"module":100,"moduleResolution":3,"traceResolution":true,"incremental":true,"strict":true,"types":[],"watch":true,"extendedDiagnostics":true,"configFilePath":"/home/src/projects/project/tsconfig.json"}
|
||||
Program structureReused: SafeModules
|
||||
Program files::
|
||||
/a/lib/lib.d.ts
|
||||
/a/lib/lib.es2022.full.d.ts
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts
|
||||
/home/src/projects/project/index.mts
|
||||
|
||||
@ -124,8 +124,21 @@ import { foo2 } from "foo2";
|
||||
import { bar2 } from "bar2";
|
||||
|
||||
|
||||
//// [/a/lib/lib.es2022.full.d.ts]
|
||||
/// <reference no-default-lib="true"/>
|
||||
interface Boolean {}
|
||||
interface Function {}
|
||||
interface CallableFunction {}
|
||||
interface NewableFunction {}
|
||||
interface IArguments {}
|
||||
interface Number { toExponential: any; }
|
||||
interface Object {}
|
||||
interface RegExp {}
|
||||
interface String { charAt: any; }
|
||||
interface Array<T> { length: number; [n: number]: T; }
|
||||
|
||||
//// [/home/src/projects/project/tsconfig.json]
|
||||
{"compilerOptions":{"target":"es5","module":"node16","moduleResolution":"node16","traceResolution":true,"incremental":true,"strict":true,"types":[]},"files":["index.mts"]}
|
||||
{"compilerOptions":{"module":"node16","moduleResolution":"node16","traceResolution":true,"incremental":true,"strict":true,"types":[]},"files":["index.mts"]}
|
||||
|
||||
//// [/a/lib/lib.d.ts]
|
||||
/// <reference no-default-lib="true"/>
|
||||
@ -169,7 +182,6 @@ Info seq [hh:mm:ss:mss] Config: /home/src/projects/project/tsconfig.json : {
|
||||
"/home/src/projects/project/index.mts"
|
||||
],
|
||||
"options": {
|
||||
"target": 1,
|
||||
"module": 100,
|
||||
"moduleResolution": 3,
|
||||
"traceResolution": true,
|
||||
@ -351,7 +363,7 @@ Info seq [hh:mm:ss:mss] File '/home/src/projects/project/node_modules/@types/ba
|
||||
Info seq [hh:mm:ss:mss] File '/a/lib/package.json' does not exist.
|
||||
Info seq [hh:mm:ss:mss] File '/a/package.json' does not exist.
|
||||
Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlier cached lookups.
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/lib/lib.d.ts 500 undefined WatchType: Closed Script info
|
||||
Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /a/lib/lib.es2022.full.d.ts 500 undefined WatchType: Closed Script info
|
||||
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations
|
||||
Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /home/src/projects 0 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations
|
||||
Info seq [hh:mm:ss:mss] DirectoryWatcher:: Added:: WatchInfo: /home/src/projects/project/node_modules 1 undefined Project: /home/src/projects/project/tsconfig.json WatchType: Failed Lookup Locations
|
||||
@ -369,14 +381,14 @@ Info seq [hh:mm:ss:mss] FileWatcher:: Added:: WatchInfo: /home/src/projects/pro
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 1 structureChanged: true structureIsReused:: Not Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (4)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts Text-1 "export declare const foo2: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts Text-1 "export declare const bar2: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
|
||||
|
||||
../../../../a/lib/lib.d.ts
|
||||
Default library for target 'es5'
|
||||
../../../../a/lib/lib.es2022.full.d.ts
|
||||
Default library for target 'es2022'
|
||||
node_modules/foo2/index.d.ts
|
||||
Imported via "foo2" from file 'index.mts' with packageId 'foo2/index.d.ts@1.0.0'
|
||||
File is CommonJS module because 'node_modules/foo2/package.json' does not have field "type"
|
||||
@ -420,7 +432,6 @@ Info seq [hh:mm:ss:mss] event:
|
||||
"deferredSize": 0
|
||||
},
|
||||
"compilerOptions": {
|
||||
"target": "es5",
|
||||
"module": "node16",
|
||||
"moduleResolution": "node16",
|
||||
"traceResolution": true,
|
||||
@ -474,7 +485,7 @@ PolledWatches::
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/a/lib/lib.d.ts: *new*
|
||||
/a/lib/lib.es2022.full.d.ts: *new*
|
||||
{}
|
||||
/home/src/projects: *new*
|
||||
{}
|
||||
@ -801,7 +812,7 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 2 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (4)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts Text-1 "export declare const foo2: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts Text-1 "export declare const bar2: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
@ -945,7 +956,7 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 3 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (4)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts Text-1 "export declare const foo2: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts Text-1 "export declare const bar2: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
@ -1177,7 +1188,7 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 4 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (4)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts Text-1 "export declare const foo2: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts Text-1 "export declare const bar2: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
@ -1390,7 +1401,7 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 5 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (4)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts Text-1 "export declare const foo2: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts Text-1 "export declare const bar2: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
@ -1593,15 +1604,15 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 6 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (5)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts Text-1 "export declare const bar: number;"
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts Text-1 "export declare const foo2: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar2/index.d.ts Text-1 "export declare const bar2: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
|
||||
|
||||
../../../../a/lib/lib.d.ts
|
||||
Default library for target 'es5'
|
||||
../../../../a/lib/lib.es2022.full.d.ts
|
||||
Default library for target 'es2022'
|
||||
node_modules/@types/bar/index.d.ts
|
||||
Imported via "bar" from file 'index.mts' with packageId '@types/bar/index.d.ts@1.0.0'
|
||||
File is CommonJS module because 'node_modules/@types/bar/package.json' does not have field "type"
|
||||
@ -1795,7 +1806,7 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Close:: WatchInfo: /ho
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 7 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (6)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts Text-1 "export declare const foo: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts Text-1 "export declare const bar: number;"
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts Text-1 "export declare const foo2: number;"
|
||||
@ -1803,8 +1814,8 @@ Info seq [hh:mm:ss:mss] Files (6)
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
|
||||
|
||||
../../../../a/lib/lib.d.ts
|
||||
Default library for target 'es5'
|
||||
../../../../a/lib/lib.es2022.full.d.ts
|
||||
Default library for target 'es2022'
|
||||
node_modules/foo/index.d.ts
|
||||
Imported via "foo" from file 'index.mts' with packageId 'foo/index.d.ts@1.0.0'
|
||||
File is CommonJS module because 'node_modules/foo/package.json' does not have field "type"
|
||||
@ -1839,7 +1850,7 @@ PolledWatches *deleted*::
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/a/lib/lib.d.ts:
|
||||
/a/lib/lib.es2022.full.d.ts:
|
||||
{}
|
||||
/home/src/projects:
|
||||
{}
|
||||
@ -2063,15 +2074,15 @@ Info seq [hh:mm:ss:mss] Elapsed:: *ms DirectoryWatcher:: Added:: WatchInfo: /ho
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 8 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (5)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts Text-1 "export declare const foo: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts Text-1 "export declare const bar: number;"
|
||||
/home/src/projects/project/node_modules/foo2/index.d.ts Text-1 "export declare const foo2: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
|
||||
|
||||
../../../../a/lib/lib.d.ts
|
||||
Default library for target 'es5'
|
||||
../../../../a/lib/lib.es2022.full.d.ts
|
||||
Default library for target 'es2022'
|
||||
node_modules/foo/index.d.ts
|
||||
Imported via "foo" from file 'index.mts' with packageId 'foo/index.d.ts@1.0.0'
|
||||
File is CommonJS module because 'node_modules/foo/package.json' does not have field "type"
|
||||
@ -2103,7 +2114,7 @@ PolledWatches::
|
||||
{"pollingInterval":500}
|
||||
|
||||
FsWatches::
|
||||
/a/lib/lib.d.ts:
|
||||
/a/lib/lib.es2022.full.d.ts:
|
||||
{}
|
||||
/home/src/projects:
|
||||
{}
|
||||
@ -2319,14 +2330,14 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 9 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (4)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts Text-1 "export declare const foo: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts Text-1 "export declare const bar: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
|
||||
|
||||
../../../../a/lib/lib.d.ts
|
||||
Default library for target 'es5'
|
||||
../../../../a/lib/lib.es2022.full.d.ts
|
||||
Default library for target 'es2022'
|
||||
node_modules/foo/index.d.ts
|
||||
Imported via "foo" from file 'index.mts' with packageId 'foo/index.d.ts@1.0.0'
|
||||
File is CommonJS module because 'node_modules/foo/package.json' does not have field "type"
|
||||
@ -2574,7 +2585,7 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 10 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (4)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts Text-1 "export declare const foo: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts Text-1 "export declare const bar: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
@ -2798,7 +2809,7 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 11 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (4)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts Text-1 "export declare const foo: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts Text-1 "export declare const bar: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
@ -3030,7 +3041,7 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 12 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (4)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts Text-1 "export declare const foo: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts Text-1 "export declare const bar: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
@ -3243,7 +3254,7 @@ Info seq [hh:mm:ss:mss] File '/package.json' does not exist according to earlie
|
||||
Info seq [hh:mm:ss:mss] Finishing updateGraphWorker: Project: /home/src/projects/project/tsconfig.json Version: 13 structureChanged: true structureIsReused:: SafeModules Elapsed:: *ms
|
||||
Info seq [hh:mm:ss:mss] Project '/home/src/projects/project/tsconfig.json' (Configured)
|
||||
Info seq [hh:mm:ss:mss] Files (4)
|
||||
/a/lib/lib.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/a/lib/lib.es2022.full.d.ts Text-1 "/// <reference no-default-lib=\"true\"/>\ninterface Boolean {}\ninterface Function {}\ninterface CallableFunction {}\ninterface NewableFunction {}\ninterface IArguments {}\ninterface Number { toExponential: any; }\ninterface Object {}\ninterface RegExp {}\ninterface String { charAt: any; }\ninterface Array<T> { length: number; [n: number]: T; }"
|
||||
/home/src/projects/project/node_modules/foo/index.d.ts Text-1 "export declare const foo: number;"
|
||||
/home/src/projects/project/node_modules/@types/bar/index.d.ts Text-1 "export declare const bar: number;"
|
||||
/home/src/projects/project/index.mts SVC-1-0 "import { foo } from \"foo\";\nimport { bar } from \"bar\";\nimport { foo2 } from \"foo2\";\nimport { bar2 } from \"bar2\";\n"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user