-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
tsconfig.json
37 lines (37 loc) · 1.37 KB
/
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
33
34
35
36
37
/*---------------------------------------------------------------------------------------------
* Copyright (c) Rowe Wilson Frederisk Holme. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
{
"compilerOptions": {
/* Visit https://aka.ms/tsconfig.json to read more about this file */
/* Basic Options */
"target": "ES6",
"module": "CommonJS",
"lib": [
"ES6"
],
"sourceMap": true,
"outDir": "./out/",
"rootDir": "./src/",
/* Strict Type-Checking Options */
"strict": true, /* enable all strict type-checking options */
/* Additional Checks */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"importHelpers": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
},
"exclude": [
"./.vscode-test/*"
],
"include": [
"./src/**/*.ts",
"./node_modules/vscode/vscode.d.ts",
"./node_modules/vscode/lib/*"
]
}