forked from microsoft/TypeScript
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtsconfig.json
32 lines (32 loc) · 942 Bytes
/
tsconfig.json
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
{
"extends": "../../tsconfig-base",
"compilerOptions": {
"removeComments": true,
"outFile": "../../../built/local/typingsInstaller.js",
"types": [
"node"
],
"lib": [
"es6",
"scripthost"
]
},
"files": [
"../../compiler/types.ts",
"../../compiler/performance.ts",
"../../compiler/core.ts",
"../../compiler/sys.ts",
"../../compiler/diagnosticInformationMap.generated.ts",
"../../compiler/utilities.ts",
"../../compiler/scanner.ts",
"../../compiler/parser.ts",
"../../compiler/commandLineParser.ts",
"../../compiler/moduleNameResolver.ts",
"../../services/semver.ts",
"../../services/jsTyping.ts",
"../types.ts",
"../shared.ts",
"typingsInstaller.ts",
"nodeTypingsInstaller.ts"
]
}