-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathtsconfig.json
More file actions
49 lines (49 loc) · 820 Bytes
/
tsconfig.json
File metadata and controls
49 lines (49 loc) · 820 Bytes
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
{
"compilerOptions": {
"composite": true,
"module": "commonjs",
"target": "es2017",
"lib": [
"es2017",
"dom"
],
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"strict": true,
"stripInternal": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"baseUrl": ".",
"paths": {
"@microsoft/dev-tunnels-ssh": [
"./src/ts/ssh"
],
"@microsoft/dev-tunnels-ssh-keys": [
"./src/ts/ssh-keys"
],
"@microsoft/dev-tunnels-ssh-tcp": [
"./src/ts/ssh-tcp"
]
}
},
"include": [],
"references": [
{
"path": "./src/ts/ssh"
},
{
"path": "./src/ts/ssh-keys"
},
{
"path": "./src/ts/ssh-tcp"
},
{
"path": "./bench/ts/ssh-bench"
},
{
"path": "./test/ts/ssh-test"
}
]
}