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

jsconfig.json - github.com/microsoft/vscode.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cc732031011dee69de6d6e2226a2be3b185b5213 (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
{
	// See https://go.microsoft.com/fwlink/?LinkId=759670
	// for the documentation about the jsconfig.json format
	"compilerOptions": {
		"target": "es6",
		"module": "commonjs",
		"allowSyntheticDefaultImports": true
	},
	"exclude": [
		"src",
		"extensions",
		"test",
		"i18n",
		"out",
		"out-build",
		"out-vscode",
		"out-vscode-min",
		"out-editor",
		"out-editor-min",
		"out-monaco-editor-core",
		"resources",
		"scripts",
		".build",
		"node_modules",
		"build/monaco/node_modules"
	]
}