-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
77 lines (77 loc) · 2.53 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"version": "2.1.4",
"compilerOptions": {
"allowJs": false,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"charset": "utf8",
"declaration": true,
"diagnostics": true,
"emitBOM": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": false,
"inlineSourceMap": false,
"inlineSources": false,
"isolatedModules": false,
//"jsx": "react",
"listFiles": true,
"locale": "en-us",
//"mapRoot": null,
"module": "commonjs",
//"moduleResolution": "classic",
"newLine": "LF",
"noEmit": false,
"noEmitHelpers": false,
"noEmitOnError": false,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": false,
"noImplicitReturns": true,
//"noImplicitUseStrict": false,
"lib": ["dom", "es2015.core", "es2015.iterable", "es2015.generator", "es2015.promise", "es2017"],
"types": ["node", "qunit", "power-assert-formatter"],
"noLib": false,
"noResolve": false,
"outDir": "lib",
//"outFile": null,
"preserveConstEnums": true,
"pretty": true,
//"reactNamespace": "React",
"removeComments": false,
"rootDir": "src",
"skipDefaultLibCheck": false,
//"inlineSourceMap": fals,
//"sourceMap": false,
//"sourceRoot": "./src",
"strictNullChecks": true,
"stripInternal": false,
"suppressExcessPropertyErrors": true,
"suppressImplicitAnyIndexErrors": true,
"target": "es6"
//"traceResolution": false
},
"formatCodeOptions": {
"indentSize": 2,
"tabSize": 2,
"newLineCharacter": "\n",
"convertTabsToSpaces": true,
"insertSpaceAfterCommaDelimiter": true,
"insertSpaceAfterSemicolonInForStatements": true,
"insertSpaceBeforeAndAfterBinaryOperators": true,
"insertSpaceAfterKeywordsInControlFlowStatements": true,
"insertSpaceAfterFunctionKeywordForAnonymousFunctions": true,
"insertSpaceAfterOpeningAndBeforeClosingNonemptyParenthesis": false,
"placeOpenBraceOnNewLineForFunctions": true,
"placeOpenBraceOnNewLineForControlBlocks": true
},
"files": [
"src/decls/globals.d.ts",
"src/Test/index.ts",
"src/index.ts"
],
"exclude": [
"node_modules",
"bower_components"
]
}