-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathtsconfig.json
45 lines (37 loc) · 1.14 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
{
"files": [
"./src/main.ts"
],
"compilerOptions": {
"outDir" : "dist",
"target" : "ESNext",
"module" : "ES2015",
"moduleResolution" : "node",
"allowJs" : false,
"baseUrl" : "./src",
"sourceRoot" : "./src",
"sourceMap" : true,
"pretty" : true,
"noEmitOnError" : false,
"charset" : "utf8",
"newLine" : "LF",
"lib": [
"dom",
"dom.iterable",
"es6"
],
"allowUnreachableCode" : false,
"allowUnusedLabels" : false,
"strictNullChecks" : true,
"forceConsistentCasingInFileNames" : true,
"suppressExcessPropertyErrors" : true,
"suppressImplicitAnyIndexErrors" : true,
"noFallthroughCasesInSwitch" : true,
"noImplicitAny" : true,
"noImplicitReturns" : true,
"noImplicitThis" : true,
"noImplicitUseStrict" : true,
"noUnusedLocals" : true,
"noUnusedParameters" : true
}
}