Welcome to mirror list, hosted at ThFree Co, Russian Federation.

tsconfig.json « src - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 091d1d3acbc42a80cc6cfeca01113282e021de2a (plain)
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
{
	"extends": "./tsconfig.base.json",
	"compilerOptions": {
		"removeComments": false,
		"preserveConstEnums": true,
		"sourceMap": false,
		"outDir": "../out",
		"target": "es2017",
		"lib": [
			"dom",
			"es5",
			"es2015.iterable",
			"webworker"
		],
		"types": [
			"keytar",
			"mocha",
			"semver",
			"sinon",
			"winreg"
		]
	},
	"include": [
		"./typings",
		"./vs"
	],
	"exclude": [
		"./typings/require-monaco.d.ts"
	]
}