File: pathMappingBasedModuleResolution5_classic.types

package info (click to toggle)
node-typescript 3.3.3333-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 324,548 kB
  • sloc: makefile: 6; sh: 3
file content (69 lines) | stat: -rw-r--r-- 1,559 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
=== c:/root/folder1/file1.ts ===
import {x} from "folder2/file1"
>x : number

import {y} from "folder3/file2"
>y : number

import {z} from "components/file3"
>z : number

import {z1} from "file4"
>z1 : number

declare function use(a: any): void;
>use : (a: any) => void
>a : any

use(x.toExponential());
>use(x.toExponential()) : void
>use : (a: any) => void
>x.toExponential() : string
>x.toExponential : (fractionDigits?: number) => string
>x : number
>toExponential : (fractionDigits?: number) => string

use(y.toExponential());
>use(y.toExponential()) : void
>use : (a: any) => void
>y.toExponential() : string
>y.toExponential : (fractionDigits?: number) => string
>y : number
>toExponential : (fractionDigits?: number) => string

use(z.toExponential());
>use(z.toExponential()) : void
>use : (a: any) => void
>z.toExponential() : string
>z.toExponential : (fractionDigits?: number) => string
>z : number
>toExponential : (fractionDigits?: number) => string

use(z1.toExponential());
>use(z1.toExponential()) : void
>use : (a: any) => void
>z1.toExponential() : string
>z1.toExponential : (fractionDigits?: number) => string
>z1 : number
>toExponential : (fractionDigits?: number) => string

=== c:/root/folder2/file1.ts ===
export var x = 1;
>x : number
>1 : 1

=== c:/root/generated/folder3/file2.ts ===
export var y = 1;
>y : number
>1 : 1

=== c:/root/shared/components/file3.ts ===
export var z = 1;
>z : number
>1 : 1

=== c:/file4.ts ===
export var z1 = 1;
>z1 : number
>1 : 1