-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.54 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
{
"compilerOptions" : {
"allowJs" : true ,
"allowSyntheticDefaultImports" : true ,
"allowUnusedLabels" : true ,
"baseUrl" : "." ,
"declaration" : false ,
"declarationMap" : false ,
"esModuleInterop" : true ,
"experimentalDecorators" : true ,
"jsx" : "react" ,
"resolveJsonModule" : true ,
"strictFunctionTypes" : false ,
"strict" : false ,
"strictBindCallApply" : false ,
"strictNullChecks" : false ,
"allowUnreachableCode" : true ,
"module" : "CommonJS" ,
"moduleResolution" : "node" ,
"noEmit" : true ,
"noImplicitAny" : false ,
"noImplicitReturns" : false ,
"noImplicitUseStrict" : false ,
"noUnusedLocals" : false ,
"noUnusedParameters" : false ,
"preserveConstEnums" : true ,
"removeComments" : true ,
"sourceMap" : true ,
"target" : "ES2020" ,
"watch" : false ,
"allowSyntheticDefaultImports" : true ,
"lib" : [
"ES5" , "ES6" , "ES2015" , "ES7" , "ES2016" , "ES2017" , "ES2018" , "ESNext" , "DOM.Iterable" , "WebWorker" , "ScriptHost" , "ES2015.Core" , "ES2015.Collection" , "ES2015.Generator" , "ES2015.Iterable" , "ES2015.Promise" , "ES2015.Proxy" , "ES2015.Reflect" , "ES2015.Symbol" , "ES2015.Symbol.WellKnown" , "ES2016.Array.Include" , "ES2017.object" , "ES2017.Intl" , "ES2017.SharedMemory" , "ES2017.String" , "ES2017.TypedArrays" , "ES2018.Intl" , "ES2018.Promise" , "ES2018.RegExp" , "ESNext.AsyncIterable" , "ESNext.Array" , "ESNext.Intl" , "ESNext.Symbol" , "react" , "DOM"
]
} ,
"include" : [ "**/*.ts" , "**/*.tsx" ] ,
"exclude" : [ "node_modules" , "dist" , ".git" , ".idea" , ".svn" ]
}