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: 5a2784b630ffd457b76243169307a1b9bec374b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
	"extends": "./tsconfig.base.json",
	"compilerOptions": {
		"removeComments": false,
		"preserveConstEnums": true,
		"sourceMap": false,
		"outDir": "../out/vs",
		"target": "es2017",
		"types": [
			"keytar",
			"mocha",
			"semver",
			"sinon",
			"winreg"
		]
	},
	"include": [
		"./typings",
		"./vs"
	]
}